Skip to content

Commit

Permalink
fix docs (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
dillonalaird authored Jun 9, 2024
1 parent 3d92689 commit d140e98
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,11 +160,12 @@ You can then run Vision Agent using the Azure OpenAI models:

```python
import vision_agent as va
import vision_agent.tools as T
agent = va.agent.VisionAgent(
planner=va.llm.AzureOpenAILLM(),
coder=va.lmm.AzureOpenAILMM(),
tester=va.lmm.AzureOpenAILMM(),
debugger=va.lmm.AzureOpenAILMM(),
tool_recommender=va.utils.AzureSim(),
tool_recommender=va.utils.AzureSim(T.TOOLS_DF, sim_key="desc"),
)
```
3 changes: 2 additions & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,11 +150,12 @@ You can then run Vision Agent using the Azure OpenAI models:

```python
import vision_agent as va
import vision_agent.tools as T
agent = va.agent.VisionAgent(
planner=va.llm.AzureOpenAILLM(),
coder=va.lmm.AzureOpenAILMM(),
tester=va.lmm.AzureOpenAILMM(),
debugger=va.lmm.AzureOpenAILMM(),
tool_recommender=va.utils.AzureSim(),
tool_recommender=va.utils.AzureSim(T.TOOLS_DF, sim_key="desc"),
)
```

0 comments on commit d140e98

Please sign in to comment.