-
Notifications
You must be signed in to change notification settings - Fork 8
Ui_imp add Array/Object params #203
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
Conversation
|
Raise against main. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Overall suggestion:
- pre-loaded agent in AgC UI is fine to get first hand experience of tools, prompt. But it can't run directly.
- E2E execution agent is dependent on tools which runs in separate run time.... it is better to provide setup instructions as a response of query to agent on AgC UI.
- Setup instructions can be documented in ReadMe.
- E2E execution of use case should be from main function written inside module telco-revenue-retention. This will call agent first through Responses API, using openAI agent SDK.
- Since, this runtime has tools too then tools would also get executed as when called by AgC.
platform/agc-platform-core/src/main/resources/bootstrap-agents.json
Outdated
Show resolved
Hide resolved
platform/examples/sdk-examples/openai-java-sdk/build.gradle.kts
Outdated
Show resolved
Hide resolved
platform/examples/sdk-examples/openai-java-sdk/src/main/java/common/AgcRuntimeTool.java
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add Code to call agent directly through responses API using OpenAI SDK.
platform/agc-platform-core/src/main/kotlin/ai/masaic/platform/api/service/AgentService.kt
Outdated
Show resolved
Hide resolved
platform/agc-platform-core/src/main/kotlin/ai/masaic/platform/api/service/AgentService.kt
Outdated
Show resolved
Hide resolved
| "strict": true | ||
| } | ||
| ], | ||
| "model":"gpt-4o", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
change with gpt-4.1-mini .... :P ... you know the reason :D
No description provided.