-
Notifications
You must be signed in to change notification settings - Fork 904
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: Minor fixes to python sdk Signed-off-by: Diwank Singh Tomer <[email protected]> * version(sdks/python): 0.2.14 Signed-off-by: Diwank Singh Tomer <[email protected]> * deps(agents-api): Update poetry.lock Signed-off-by: Diwank Singh Tomer <[email protected]> --------- Signed-off-by: Diwank Singh Tomer <[email protected]>
- Loading branch information
Showing
15 changed files
with
246 additions
and
187 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# For use with `merge-markdown` | ||
--- | ||
input: | ||
./SUMMARY.md: "" | ||
./README.md: "" | ||
./README (1).md: "" | ||
./introduction/core-concepts.md: "" | ||
./introduction/julep-in-a-nutshell.md: "" | ||
./getting-started/agents-quickstart.md: "" | ||
./getting-started/python-setup.md: "" | ||
./agents/jessica.md: "" | ||
./agents/overview.md: "" | ||
./agents/self-hosting.md: "" | ||
./agents/tutorial.md: "" | ||
./faqs/agent-prototyping.md: "" | ||
./faqs/general-overview.md: "" | ||
./faqs/memory-and-learning.md: "" | ||
./faqs/README.md: "" | ||
./faqs/sessions-and-tasks.md: "" | ||
./faqs/technical-details.md: "" | ||
./api-reference/agents-api/agents-api-1.md: "" | ||
./api-reference/agents-api/agents-api-2.md: "" | ||
./api-reference/agents-api/agents-api-3.md: "" | ||
./api-reference/agents-api/agents-api-4.md: "" | ||
./api-reference/agents-api/agents-api-5.md: "" | ||
./api-reference/agents-api/agents-api-6.md: "" | ||
./api-reference/agents-api/agents-api.md: "" | ||
./api-reference/agents-api/README.md: "" | ||
output: | ||
name: merged/doc.md | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# This file was auto-generated by Fern from our API Definition. | ||
|
||
import typing | ||
|
||
AgentInstructions = typing.Union[str, typing.List[str]] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
sdks/python/julep/api/types/create_agent_request_instructions.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# This file was auto-generated by Fern from our API Definition. | ||
|
||
import typing | ||
|
||
CreateAgentRequestInstructions = typing.Union[str, typing.List[str]] |
5 changes: 5 additions & 0 deletions
5
sdks/python/julep/api/types/patch_agent_request_instructions.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# This file was auto-generated by Fern from our API Definition. | ||
|
||
import typing | ||
|
||
PatchAgentRequestInstructions = typing.Union[str, typing.List[str]] |
5 changes: 5 additions & 0 deletions
5
sdks/python/julep/api/types/update_agent_request_instructions.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# This file was auto-generated by Fern from our API Definition. | ||
|
||
import typing | ||
|
||
UpdateAgentRequestInstructions = typing.Union[str, typing.List[str]] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.