-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
First iteration of tracing #267
Conversation
CI Failure Feedback(Checks updated until commit 3c3e026)
✨ CI feedback usage guide:The CI feedback tool (
In addition to being automatically triggered, the tool can also be invoked manually by commenting on a PR:
where Configuration options
See more information about the |
/review |
PR Review(Review updated until commit 3c3e026)
Code feedback:
|
PR Description updated to latest commit (3c3e026)
|
Persistent review updated to latest commit 3c3e026 |
Changelog updates: 2024-05-02Added
Changed
|
PR Analysis
✨ Usage guide:Using static code analysis capabilities, the
Language that are currently supported: Python, Java, C++, JavaScript, TypeScript. |
/review auto_approve |
Auto-approve error: PR review effort (3) is higher than the maximal review effort (2) allowed |
Type
enhancement
Description
traceable
decorator fromlangsmith
to various functions across multiple modules to enhance tracing capabilities.langsmith
as a dependency inpyproject.toml
to support the tracing implementation..env.example
with new environment variables related to Langchain project and tracing.Changes walkthrough
agent.py
Integrate Tracing Decorators in Deployment Functions
codex/deploy/agent.py
traceable
decorator tocreate_deployment
,create_local_deployment
, andcreate_cloud_deployment
functions.agent.py
Apply Tracing Decorators to Development Functions
codex/develop/agent.py
traceable
decorator and applied it to several functionsincluding
process_api_route
,develop_user_interface
,develop_application
, and others.agent.py
Enhance Interview Functions with Tracing and OpenAI Wrapper
codex/interview/agent.py
traceable
decorator tostart_interview
andcontinue_interview
functions.
wrap_openai
fromlangsmith.wrappers
.agent.py
Implement Tracing in Requirements Generation Functions
codex/requirements/agent.py
traceable
decorator togenerate_requirements
,denfine_module_routes
, anddefine_api_spec
functions..env.example
Update Environment Configuration for Langchain Integration
.env.example
LANGCHAIN_PROJECT
,LANGCHAIN_TRACING_V2
, andLANGCHAIN_API_KEY
.pyproject.toml
Add Langsmith Dependency for Tracing
pyproject.toml
langsmith
package to the project dependencies.