Is is possible to run training task on an agent built by Golang?
I build an agent by Golang. Is possible to train the LLM that this agent use?
We haven't provided a client SDK in golang. So in order to use it in golang, you need to implement an SDK on your own based on the protocol between server and client. However, given the nature of this project, I'm not sure how much you can still leverage from the project if you are building your own client SDK.
I am not sure if this way works: deploy the golang agent as a service, then use python to simply call this service while passing the llm ep provided by server(which will replace the ep used in golang agent) to the golang agent
The core problem here is how to collect the trace data. If you are using Python, we have agentops, along with other tracing tools. I'm not sure whether you can do the same with golang.