Open
Conversation
| # Arthur Configuration | ||
| ARTHUR_BASE_URL=https://app.arthur.ai # or your self-hosted instance | ||
| ARTHUR_API_KEY=your_arthur_api_key_here | ||
| ARTHUR_TASK_ID=your_task_id_here # ensure that your task is marked as agentic: `is_agentic=True` |
Contributor
There was a problem hiding this comment.
Does it make sense to include instructions for this? This was meant to be an internal tutorial so I didn't bother, but that may be vital for external users.
| **Examples:** | ||
| - "What is 10pm EDT in California?" | ||
| - "Convert 2:30pm EST to Tokyo time" | ||
| - "What time is 9am in London when it's 3pm in New York?" |
Contributor
There was a problem hiding this comment.
This is actually a really bad example lol. Might wanna change this to - "What time is it in London when it's 3pm in New York?"
|
|
||
| **Common Abbreviations:** UTC, GMT, JST, IST, CET, BST, etc. | ||
|
|
||
| ## File Structure |
Contributor
There was a problem hiding this comment.
I think the README can be simplified to just the core information
|
|
||
| ### 2. Creating Tools | ||
|
|
||
| The tools are defined in `timezone_tools.py` using LangChain's `@tool` decorator: |
Contributor
There was a problem hiding this comment.
Might be cool to emphasise that we can support most popular frameworks.
|
|
||
| The agent injects Arthur task metadata into all traces, allowing you to view and analyze the interactions in your Arthur dashboard. | ||
|
|
||
| ### 4. Injecting Arthur Task Metadata |
Contributor
There was a problem hiding this comment.
We can remove this step and emphasize setting the task ID in the tracing
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Added the open inference tutorial with a basic timezone agent.