Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jonas-becker committed Jun 18, 2024
1 parent 8eaeeb1 commit f4e05ea
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,13 @@ You can test stuff in the `notebooks` directory.

## Arguments

All arguments the scheduler can parse:
Use "tgi" as a model for Text Generation Inference by HuggingFace or one of these: https://platform.openai.com/docs/models

### Config Arguments:
```py
instruction: str,
endpoint_url: str = "https://api.openai.com",
model: str = "gpt-3.5-turbo", # use "tgi" for Text Generation Inference by HuggingFace or one of these: https://platform.openai.com/docs/models
model: str = "gpt-3.5-turbo",
api_key: str = "-",
use_moderator: bool = False
max_turns: int = 10
Expand All @@ -117,7 +119,7 @@ chain_of_thought: bool = True
split_agree_and_answer: bool = True
num_agents: int = 3
agent_generator: str = "expert"
num_samples: Optional[int] = None # if a sample fails, supplementary samples will be taken until num_samles succeeded
num_samples: Optional[int] = None
```

## Evaluation
Expand Down

0 comments on commit f4e05ea

Please sign in to comment.