Skip to content

Commit

Permalink
update toml to make docs grp optional
Browse files Browse the repository at this point in the history
  • Loading branch information
pchalasani committed May 31, 2024
1 parent f9e6aad commit e90bcd1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/quick-start/chat-agent-tool.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ environment, and the results of the execution are returned to the LLM.

For LLM developers, Langroid provides a clean, uniform interface
for the recently released OpenAI [Function-calling](https://platform.openai.com/docs/guides/gpt/function-calling)
as well Langroid's own native "tools" mechanism. The latter is useful to have non-OpenAI
(or other LLMs) that do not have a "native" function-calling facility.
as well Langroid's own native "tools" mechanism. The native tools mechanism is meant to be
used when working with non-OpenAI LLMs that do not have a "native" function-calling facility.
You can choose which to enable by setting the
`use_tools` and `use_functions_api` flags in the `ChatAgentConfig` object.
(Or you can omit setting these, and langroid auto-selects the best mode
Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,9 @@ pytest-postgresql = "^5.0.0"
pytest-mysql = "^2.4.2"
coverage = "^7.2.5"

[tool.poetry.group.docs]
optional = true

[tool.poetry.group.docs.dependencies]

mkdocs = "^1.4.2"
Expand Down

0 comments on commit e90bcd1

Please sign in to comment.