Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
KhoomeiK authored Mar 10, 2024
1 parent 636769a commit b76a6a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class BlackjackAgent(Agent):
return f"Your current total is {observation[0]}"

def extract_action(self, response: str):
return 0 if "stick" in response else 1
return 0 if "stay" in response else 1
```

Then, define your base LLM (as you would for any fine-tuning job) and instantiate your agent:
Expand Down

0 comments on commit b76a6a7

Please sign in to comment.