From a258779d5ccaf5e21445848977e070e14abdcd70 Mon Sep 17 00:00:00 2001 From: Braelyn Boynton Date: Tue, 24 Sep 2024 04:27:56 +0900 Subject: [PATCH 1/9] version bump (#422) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f3d7b9fa4..6449aaf37 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "agentops" -version = "0.3.11" +version = "0.3.12" authors = [ { name="Alex Reibman", email="areibman@gmail.com" }, { name="Shawn Qiu", email="siyangqiu@gmail.com" }, From cab23296609cca786bb506be3aeeee164341324b Mon Sep 17 00:00:00 2001 From: Howard Gil Date: Mon, 23 Sep 2024 17:05:13 -0700 Subject: [PATCH 2/9] fixed broken link (#423) --- docs/v1/usage/recording-events.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/v1/usage/recording-events.mdx b/docs/v1/usage/recording-events.mdx index 361188ec4..a80d4d2df 100644 --- a/docs/v1/usage/recording-events.mdx +++ b/docs/v1/usage/recording-events.mdx @@ -1,6 +1,6 @@ --- title: "Recording Events" -description: "Log events such as agent actions, LLM calls, tool calls, and errors. _See [Event Class](./events)_." +description: "Log events such as agent actions, LLM calls, tool calls, and errors. _See [Event Class](/v1/concepts/events)_." --- To get the most out of AgentOps, it is best to carefully consider what events to record - From 8c0318703e359df8ebe3b4e3cf5102858f6b170f Mon Sep 17 00:00:00 2001 From: Howard Gil Date: Mon, 23 Sep 2024 17:05:27 -0700 Subject: [PATCH 3/9] Renamed environment variables page to advanced configuration (#424) --- docs/mint.json | 2 +- docs/v1/examples/fastapi.mdx | 2 +- docs/v1/integrations/autogen.mdx | 2 +- docs/v1/integrations/cohere.mdx | 2 +- docs/v1/integrations/crewai.mdx | 2 +- docs/v1/integrations/langchain.mdx | 2 +- .../{environment-variables.mdx => advanced-configuration.mdx} | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) rename docs/v1/usage/{environment-variables.mdx => advanced-configuration.mdx} (97%) diff --git a/docs/mint.json b/docs/mint.json index e51ab0666..1b05dcffc 100644 --- a/docs/mint.json +++ b/docs/mint.json @@ -79,7 +79,7 @@ "pages": [ "v1/usage/dashboard-info", "v1/usage/sdk-reference", - "v1/usage/environment-variables", + "v1/usage/advanced-configuration", "v1/usage/tracking-llm-calls", "v1/usage/tracking-agents", "v1/usage/recording-events", diff --git a/docs/v1/examples/fastapi.mdx b/docs/v1/examples/fastapi.mdx index ccde119d9..166d3155a 100644 --- a/docs/v1/examples/fastapi.mdx +++ b/docs/v1/examples/fastapi.mdx @@ -73,7 +73,7 @@ mode: "wide" API keys are tied to individual projects.

A Default Project has been created for you, so just click Copy API Key - Set this API Key in your [environment variables](/v1/usage/environment-variables) + Set this API Key in your [environment variables](/v1/usage/advanced-configuration) ```python .env AGENTOPS_API_KEY= ``` diff --git a/docs/v1/integrations/autogen.mdx b/docs/v1/integrations/autogen.mdx index d6b3da212..0ec7d7342 100644 --- a/docs/v1/integrations/autogen.mdx +++ b/docs/v1/integrations/autogen.mdx @@ -53,7 +53,7 @@ Autogen has comprehensive [documentation](https://microsoft.github.io/autogen/do AGENTOPS_API_KEY= ``` - Read more about [environment variables](/v1/usage/environment-variables) + Read more about environment variables in [Advanced Configuration](/v1/usage/advanced-configuration) diff --git a/docs/v1/integrations/cohere.mdx b/docs/v1/integrations/cohere.mdx index 35771a8af..d8fd30edf 100644 --- a/docs/v1/integrations/cohere.mdx +++ b/docs/v1/integrations/cohere.mdx @@ -50,7 +50,7 @@ This is a living integration. Should you need any added functionality, message u AGENTOPS_API_KEY= ``` - Read more about [environment variables](/v1/usage/environment-variables) + Read more about environment variables in [Advanced Configuration](/v1/usage/advanced-configuration) diff --git a/docs/v1/integrations/crewai.mdx b/docs/v1/integrations/crewai.mdx index 4029411d8..c13ca2c08 100644 --- a/docs/v1/integrations/crewai.mdx +++ b/docs/v1/integrations/crewai.mdx @@ -55,7 +55,7 @@ Crew has comprehensive [documentation](https://docs.crewai.com) available as wel AGENTOPS_API_KEY= ``` - Read more about [environment variables](/v1/usage/environment-variables) + Read more about environment variables in [Advanced Configuration](/v1/usage/advanced-configuration) diff --git a/docs/v1/integrations/langchain.mdx b/docs/v1/integrations/langchain.mdx index 1b3106917..ecdcf2a89 100644 --- a/docs/v1/integrations/langchain.mdx +++ b/docs/v1/integrations/langchain.mdx @@ -66,7 +66,7 @@ AgentOps works seamlessly with applications built using LangChain. AGENTOPS_API_KEY= ``` - Read more about [environment variables](/v1/usage/environment-variables) + Read more about environment variables in [Advanced Configuration](/v1/usage/advanced-configuration) diff --git a/docs/v1/usage/environment-variables.mdx b/docs/v1/usage/advanced-configuration.mdx similarity index 97% rename from docs/v1/usage/environment-variables.mdx rename to docs/v1/usage/advanced-configuration.mdx index 03d6ff98e..bcab8ebcf 100644 --- a/docs/v1/usage/environment-variables.mdx +++ b/docs/v1/usage/advanced-configuration.mdx @@ -1,5 +1,5 @@ --- -title: "Environment Variables" +title: "Advanced Configuration" mode: "wide" --- From 08e136cb23f3809a094532f28b8d6a06b9c39766 Mon Sep 17 00:00:00 2001 From: Howard Gil Date: Mon, 23 Sep 2024 17:06:20 -0700 Subject: [PATCH 4/9] Moved integrations up in sidebar (#425) --- docs/mint.json | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/docs/mint.json b/docs/mint.json index 1b05dcffc..09cb5494c 100644 --- a/docs/mint.json +++ b/docs/mint.json @@ -74,6 +74,17 @@ "v1/concepts/tags" ] }, + { + "group": "Integrations", + "pages": [ + "v1/integrations/crewai", + "v1/integrations/autogen", + "v1/integrations/langchain", + "v1/integrations/cohere", + "v1/integrations/litellm", + "v1/integrations/multion" + ] + }, { "group": "Usage", "pages": [ @@ -86,17 +97,6 @@ "v1/usage/multiple-sessions" ] }, - { - "group": "Integrations", - "pages": [ - "v1/integrations/crewai", - "v1/integrations/autogen", - "v1/integrations/langchain", - "v1/integrations/cohere", - "v1/integrations/litellm", - "v1/integrations/multion" - ] - }, { "group": "Other Info", "pages": ["v1/concepts/host-env"] From b0d0ce3e7d1baec2ae8adcc491775de87f84f1ae Mon Sep 17 00:00:00 2001 From: Howard Gil Date: Mon, 23 Sep 2024 17:06:32 -0700 Subject: [PATCH 5/9] Added feedback link to docs (#426) * Moved integrations up in sidebar * added feedback link --- docs/mint.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/mint.json b/docs/mint.json index 09cb5494c..963682a23 100644 --- a/docs/mint.json +++ b/docs/mint.json @@ -48,6 +48,11 @@ "name": "Call my Agent (Support)", "icon": "headset", "url": "https://agentops.ai/contact" + }, + { + "name": "Give Feedback", + "icon": "comment-smile", + "url": "https://agentops.ai/contact" } ], "navigation": [ @@ -112,10 +117,5 @@ "apiKey": "phc_BrY3H11IViWSoUJ0QFfjBx7kEwIJMT0PjBEXZQmddW", "apiHost": "https://us.i.posthog.com" } - }, - "feedback": { - "thumbsRating": true, - "suggestEdit": true, - "raiseIssue": true } } \ No newline at end of file From c0fa2abbc8ead94dc6b53ef5fc3bba5d73e43c9e Mon Sep 17 00:00:00 2001 From: Alex Reibman Date: Mon, 23 Sep 2024 19:26:54 -0700 Subject: [PATCH 6/9] Issue forms (#428) * added yaml * Update issue templates * updated contribution * update pr template --- .github/CONTRIBUTING.md | 29 ++++++---- .github/ISSUE_TEMPLATE/bug_report.md | 26 --------- .github/ISSUE_TEMPLATE/bug_report.yaml | 53 +++++++++++++++++++ .../ISSUE_TEMPLATE/documentation_update.md | 21 -------- .../ISSUE_TEMPLATE/documentation_update.yaml | 53 +++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 27 ---------- .github/ISSUE_TEMPLATE/feature_request.yaml | 37 +++++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 14 +---- 8 files changed, 164 insertions(+), 96 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yaml delete mode 100644 .github/ISSUE_TEMPLATE/documentation_update.md create mode 100644 .github/ISSUE_TEMPLATE/documentation_update.yaml delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yaml diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 74601edcd..dfd88cf75 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -1,15 +1,24 @@ -# Contributing Guide +## Open Source and Proprietary Components -Thank you for your interest in contributing to our project! +The AgentOps SDK is open source, but the backend and UI are not. We are source available and also support on-prem/VPC hosting upon request. -## Setting Up the Development Environment +That said, we love when community members contribute to our open source SDK-- we even mail over swag packs to developers who help out :) -Create a virtual environment `python -m venv env` and install requirements `pip install -e .` +## Contribution Guidelines -## Making a Pull Request +We use issues primarily to communicate our thoughts and plans to the community. However, not every issue is suitable for the open-source distribution, as some features may depend on non-open-source parts of our stack. -1. Fork the repository on GitHub. -2. Clone your forked repository to your local machine. -3. Make your changes and commit them to your forked repository. -4. Push your changes to your forked repository on GitHub. -5. Create a new pull request from your forked repository to our original repository. \ No newline at end of file +When looking for issues to work on look for following tags: +- `good first issue` +- `help wanted` + +If you have feature requests or bug reports, please open an issue. + +## Getting Started + +The easiest way to contribute is to start a conversation with us. We highly recommend: + +1. Joining our Discord community +2. Sending us a message through our contact form at [agentops.ai/contact](https://agentops.ai/contact) + +We look forward to collaborating with you and appreciate your interest in improving AgentOps! \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 5f0338a3a..000000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,26 +0,0 @@ ---- -name: ๐Ÿ› Bug Report -about: Noticed something off with Agentops? Let us know! -title: '' -labels: 'bug' -assignees: '' ---- - -## ๐Ÿ› Bug Report - -**๐Ÿ”Ž Describe the Bug** -Give a clear and concise description of the bug. - -**๐Ÿ”„ Reproduction Steps** -List the steps to reproduce the behavior. - -**๐Ÿ™ Expected Behavior** -Describe what you expected to happen. - -**๐Ÿ“ธ Screenshots** -If applicable, add screenshots to help explain the problem. - -**๐Ÿ” Additional Context** -Provide any other context about the problem here. - -Thank you for helping us improve Agentops! diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml new file mode 100644 index 000000000..f8bb79a75 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -0,0 +1,53 @@ +name: ๐Ÿ› Bug Report +description: Noticed something off with Agentops? Let us know! +title: "[Bug]: " +labels: ["bug"] +assignees: [] +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! Your feedback helps us improve AgentOps. + - type: input + id: contact + attributes: + label: Contact Details + description: How can we get in touch with you if we need more info? + placeholder: ex. email@example.com + validations: + required: false + - type: input + id: package-version + attributes: + label: ๐Ÿ“ฆ Package Version + description: What version of Agentops are you using? + placeholder: ex. 0.3.12 + validations: + required: true + - type: input + id: framework-version + attributes: + label: ๐ŸŽž๏ธ Framework Version + description: Which frameworks are you using? (if applicable) + placeholder: ex. Autogen 0.3.0, CrewAI 0.61.0, Langchain 0.2.1 + validations: + required: false + - type: textarea + id: bug-description + attributes: + label: ๐Ÿ”Ž Describe the Bug + description: Give a clear and concise description of the bug and how to reproduce it. Include any error messages and screenshots. + placeholder: What went wrong? + validations: + required: true + - type: checkboxes + id: contribution + attributes: + label: ๐Ÿค Contribution + description: Would you be willing to contribute to this update? + options: + - label: Yes, I'd be happy to submit a pull request with these changes. + - label: I need some guidance on how to contribute. + - label: I'd prefer the AgentOps team to handle this update. + validations: + required: true \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/documentation_update.md b/.github/ISSUE_TEMPLATE/documentation_update.md deleted file mode 100644 index 5a4bdb2d1..000000000 --- a/.github/ISSUE_TEMPLATE/documentation_update.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -name: ๐Ÿ“š Documentation Update -about: Suggest an improvement or addition to our documentation -title: '' -labels: 'documentation' -assignees: '' - ---- - -## ๐Ÿ“š Documentation Update - -**๐Ÿ“˜ Describe the current state of documentation** -What information is missing or could be improved? - -**๐Ÿ“– Suggested Improvement** -Describe your idea for the new/improved documentation. - -**๐Ÿ” Additional Context** -Any extra information to help us understand the change? - -Thank you for helping us improve Agentops documentation! \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/documentation_update.yaml b/.github/ISSUE_TEMPLATE/documentation_update.yaml new file mode 100644 index 000000000..016c98899 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/documentation_update.yaml @@ -0,0 +1,53 @@ +name: ๐Ÿ“š Documentation Update +description: Suggest an improvement or addition to our documentation +title: "[Docs]: " +labels: ["documentation"] +assignees: [] +body: + - type: markdown + attributes: + value: | + Thank you for helping us improve AgentOps documentation! Your input is valuable in making our docs more helpful and comprehensive. + - type: textarea + id: current-state + attributes: + label: ๐Ÿ“˜ Current State of Documentation + description: What information is missing or could be improved? + placeholder: Describe the current state of the documentation you'd like to update. + validations: + required: true + - type: textarea + id: suggested-improvement + attributes: + label: ๐Ÿ“– Suggested Improvement + description: Describe your idea for the new/improved documentation. + placeholder: What changes or additions would you like to see? + validations: + required: true + - type: input + id: affected-pages + attributes: + label: ๐Ÿ”— Affected Documentation Pages + description: If applicable, provide links to the documentation pages that need updating. + placeholder: https://docs.agentops.ai/page-to-update + validations: + required: false + - type: textarea + id: additional-context + attributes: + label: ๐Ÿ” Additional Context + description: Any extra information to help us understand the change? + placeholder: Provide any additional details or context for the documentation update. + validations: + required: false + - type: checkboxes + id: contribution + attributes: + label: ๐Ÿค Contribution + description: Would you be willing to contribute to this documentation update? + options: + - label: Yes, I'd be happy to submit a pull request with these changes. + - label: I need some guidance on how to contribute. + - label: I'd prefer the Agentops team to handle this update. + validations: + required: true \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index a7e0a3cd4..000000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -name: ๐Ÿš€ Feature Request -about: Got an idea to improve Agentops? We're all ears! -title: '' -labels: 'enhancement' -assignees: '' ---- - -## ๐Ÿš€ Feature Request - -**๐Ÿ’ก Got a brilliant idea?** -Briefly describe your feature suggestion. We're all about improving agent observability and performance. - -**๐Ÿค” Is your feature request related to a problem?** -If your feature request is related to a problem you're facing, describe it here. The more we understand your struggle, the better we can address it. - -**๐ŸŽ‰ Describe the solution you'd like** -What's your solution? Be as detailed as possible. - -**๐Ÿ“š Have you considered any alternatives?** -Share any alternative solutions or features you've considered. - -**๐Ÿ–ผ๏ธ Can you provide a visual mock-up or sketch?** -If possible, provide a visual mock-up or sketch of your feature request. Visual aids can help us better understand your vision. - -**๐Ÿ” Additional context** -Any extra information or context to help us understand better? Share it here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml new file mode 100644 index 000000000..ddffaeb84 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -0,0 +1,37 @@ +name: ๐Ÿš€ Feature Request +description: Got an idea to improve AgentOps? We're all ears! +title: "[Feature]: " +labels: ["enhancement"] +assignees: [] +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to share your feature idea! Your input helps us improve AgentOps. + - type: textarea + id: feature-description-and-solution + attributes: + label: ๐Ÿ’ก Feature Description and Proposed Solution + description: Briefly describe your feature suggestion and how you envision it working. Include any mockups/screenshots if applicable. + placeholder: What's your brilliant idea? + validations: + required: true + - type: textarea + id: problem-related + attributes: + label: ๐Ÿค” Related Problem + description: Is your feature request related to a problem you're facing? + placeholder: Describe the problem, if applicable. The more we understand your struggle, the better we can address it. + validations: + required: false + - type: checkboxes + id: contribution + attributes: + label: ๐Ÿค Contribution + description: Would you be willing to contribute to this update? + options: + - label: Yes, I'd be happy to submit a pull request with these changes. + - label: I need some guidance on how to contribute. + - label: I'd prefer the AgentOps team to handle this update. + validations: + required: true \ No newline at end of file diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index eb5b5cc3c..4afd238dd 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,18 +1,8 @@ ## ๐Ÿ“ฅ Pull Request **๐Ÿ“˜ Description** -Briefly describe the changes you've made. - -**๐Ÿ”„ Related Issue (if applicable)** -If this PR is related to an existing issue, reference it here. - -**๐ŸŽฏ Goal** -Explain the intention behind this change. - -**๐Ÿ” Additional Context** -Any extra information or context to help us understand the change? +_Briefly describe the changes you've made._ **๐Ÿงช Testing** -Describe the tests you performed to validate your changes. +_Describe the tests you performed to validate your changes._ -Thank you for your contribution to Agentops! From c6706c5eef73a49c77cd643b5e380a4d38589a56 Mon Sep 17 00:00:00 2001 From: Alex Reibman Date: Tue, 24 Sep 2024 11:15:45 -0700 Subject: [PATCH 7/9] change printline (#427) --- agentops/session.py | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/agentops/session.py b/agentops/session.py index f5722af4b..0bc28db66 100644 --- a/agentops/session.py +++ b/agentops/session.py @@ -149,15 +149,14 @@ def format_duration(start_time, end_time): token_cost_d.quantize(Decimal("0.000001"), rounding=ROUND_HALF_UP) ) ) - analytics = ( - f"Analytics for this run - " - f"LLM calls: {self.event_counts['llms']} | " - f"Tool calls: {self.event_counts['tools']} | " - f"Actions: {self.event_counts['actions']} | " - f"Errors: {self.event_counts['errors']} | " - f"Duration: {formatted_duration} | " - f"Cost: ${formatted_cost}" + f"Session stats - " + f"{colored('Cost:', attrs=['bold'])} ${formatted_cost} " + f"{colored('Duration:', attrs=['bold'])} {formatted_duration} " + f"{colored('LLMs:', attrs=['bold'])} {self.event_counts['llms']} " + f"{colored('Tools:', attrs=['bold'])} {self.event_counts['tools']} " + f"{colored('Actions:', attrs=['bold'])} {self.event_counts['actions']} " + f"{colored('Errors:', attrs=['bold'])} {self.event_counts['errors']}" ) logger.info(analytics) From 21c80548cc3e6d713f01542bd00c84536a351744 Mon Sep 17 00:00:00 2001 From: Alex Reibman Date: Thu, 26 Sep 2024 10:36:01 -0700 Subject: [PATCH 8/9] Fixed spellcaster typos (how did we misspell agentops??) (#430) --- docs/v1/concepts/events.mdx | 2 +- docs/v1/examples/multi_agent.mdx | 4 ++-- docs/v1/examples/recording_events.mdx | 4 ++-- docs/v1/examples/simple_agent.mdx | 4 ++-- examples/multi_agent_example.ipynb | 4 ++-- examples/multi_agent_groq_example.ipynb | 4 ++-- examples/openai-gpt.ipynb | 2 +- examples/recording-events.ipynb | 4 ++-- 8 files changed, 14 insertions(+), 14 deletions(-) diff --git a/docs/v1/concepts/events.mdx b/docs/v1/concepts/events.mdx index a413fafa5..cb167ad3e 100644 --- a/docs/v1/concepts/events.mdx +++ b/docs/v1/concepts/events.mdx @@ -65,7 +65,7 @@ The ToolEvent class is for recording calls to tools e.g. searchWeb, fetchFromDB. | name | str | None | "Parsing Tool" | Name of the tool | | logs | str or dict | None | "Tool executed successfully" or `{"status": "success"}` | Logs from the tool execution | -The tool event should be created previous to running the tool in order to track the execution time. +The tool event should be created before running the tool in order to track the execution time. ```python python diff --git a/docs/v1/examples/multi_agent.mdx b/docs/v1/examples/multi_agent.mdx index 8f51035c2..840f0b793 100644 --- a/docs/v1/examples/multi_agent.mdx +++ b/docs/v1/examples/multi_agent.mdx @@ -103,7 +103,7 @@ engineer = EngineerAgent() Now we have our agents and we tagged them with the `@track_agent` decorator. Any LLM calls that go through this class will now be tagged as agent calls in AgentOps. -Lets use these agents! +Let's use these agents! ```python @@ -129,7 +129,7 @@ display(Markdown("```python\n" + generated_test + "\n```")) Perfect! It generated the code as expected, and in the DEBUG logs, you can see that the calls were made by agents named "engineer" and "qa"! -Lets verify one more thing! If we make an LLM call outside of the context of a tracked agent, we want to make sure it gets assigned to the Default Agent. +Let's verify one more thing! If we make an LLM call outside of the context of a tracked agent, we want to make sure it gets assigned to the Default Agent. ```python diff --git a/docs/v1/examples/recording_events.mdx b/docs/v1/examples/recording_events.mdx index 3bdee3caa..c5edca3df 100644 --- a/docs/v1/examples/recording_events.mdx +++ b/docs/v1/examples/recording_events.mdx @@ -9,7 +9,7 @@ _View Notebook on Date: Thu, 26 Sep 2024 10:37:40 -0700 Subject: [PATCH 9/9] GitHub Action - Update examples in docs from notebooks (#431) --- docs/v1/examples/recording_events.mdx | 2 +- docs/v1/examples/simple_agent.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/v1/examples/recording_events.mdx b/docs/v1/examples/recording_events.mdx index c5edca3df..2302e5256 100644 --- a/docs/v1/examples/recording_events.mdx +++ b/docs/v1/examples/recording_events.mdx @@ -9,7 +9,7 @@ _View Notebook on