fix: load env

This commit is contained in:
lilong.129
2025-03-23 10:06:50 +08:00
parent 148d70accf
commit 2ad5c4f6db
5 changed files with 41 additions and 8 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ type ActionParser struct {
// Parse parses the prediction text and extracts actions
func (p *ActionParser) Parse(predictionText string) ([]ParsedAction, error) {
// try parsing JSON format, from VLM like GPT-4o
// try parsing JSON format, from VLM like openai/gpt-4o
var jsonActions []ParsedAction
jsonActions, jsonErr := p.parseJSON(predictionText)
if jsonErr == nil {