✨Feat: 完成前端工程场景

This commit is contained in:
2026-03-29 10:10:32 +08:00
parent 51e71da224
commit 8e4b0e4060
5 changed files with 236 additions and 6 deletions
+2 -2
View File
@@ -33,8 +33,8 @@ func GetQuiz(llm llms.Model, ctx context.Context, topic string) (response respon
return
}
func GetScenario(llm llms.Model, ctx context.Context, topic string) (response response_struct.Scenario) {
func GetScenario(llm llms.Model, ctx context.Context, topic string) (response response_struct.ScenarioResponse) {
file := files[3]
response = agent.CallWithAgentDefined(llm, ctx, topic, file, response_struct.Scenario{})
response = agent.CallWithAgentDefined(llm, ctx, topic, file, response_struct.ScenarioResponse{})
return
}