-
Notifications
You must be signed in to change notification settings - Fork 272
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: support params on input filters besides just input
- Loading branch information
1 parent
f922de1
commit dd4ba0d
Showing
8 changed files
with
193 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
`{ | ||
"role": "assistant", | ||
"content": [ | ||
{ | ||
"text": "TEST RESULT CALL: 1" | ||
} | ||
], | ||
"usage": {} | ||
}` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
`{ | ||
"model": "gpt-4o", | ||
"internalSystemPrompt": false, | ||
"messages": [ | ||
{ | ||
"role": "system", | ||
"content": [ | ||
{ | ||
"text": "Say hi" | ||
} | ||
], | ||
"usage": {} | ||
}, | ||
{ | ||
"role": "user", | ||
"content": [ | ||
{ | ||
"text": "123:{\"foo\":\"123\"}\n" | ||
} | ||
], | ||
"usage": {} | ||
} | ||
], | ||
"chat": true | ||
}` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
`{ | ||
"role": "assistant", | ||
"content": [ | ||
{ | ||
"text": "TEST RESULT CALL: 2" | ||
} | ||
], | ||
"usage": {} | ||
}` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
`{ | ||
"model": "gpt-4o", | ||
"internalSystemPrompt": false, | ||
"messages": [ | ||
{ | ||
"role": "system", | ||
"content": [ | ||
{ | ||
"text": "Say hi" | ||
} | ||
], | ||
"usage": {} | ||
}, | ||
{ | ||
"role": "user", | ||
"content": [ | ||
{ | ||
"text": ":\"foo\":\"123\"}\n" | ||
} | ||
], | ||
"usage": {} | ||
} | ||
], | ||
"chat": true | ||
}` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
`{ | ||
"done": false, | ||
"content": "TEST RESULT CALL: 1", | ||
"toolID": "inline:", | ||
"state": { | ||
"continuation": { | ||
"state": { | ||
"input": "123:{\"foo\":\"123\"}\n", | ||
"completion": { | ||
"model": "gpt-4o", | ||
"internalSystemPrompt": false, | ||
"messages": [ | ||
{ | ||
"role": "system", | ||
"content": [ | ||
{ | ||
"text": "Say hi" | ||
} | ||
], | ||
"usage": {} | ||
}, | ||
{ | ||
"role": "user", | ||
"content": [ | ||
{ | ||
"text": "123:{\"foo\":\"123\"}\n" | ||
} | ||
], | ||
"usage": {} | ||
}, | ||
{ | ||
"role": "assistant", | ||
"content": [ | ||
{ | ||
"text": "TEST RESULT CALL: 1" | ||
} | ||
], | ||
"usage": {} | ||
} | ||
], | ||
"chat": true | ||
} | ||
}, | ||
"result": "TEST RESULT CALL: 1" | ||
}, | ||
"continuationToolID": "inline:" | ||
} | ||
}` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
`{ | ||
"done": false, | ||
"content": "TEST RESULT CALL: 2", | ||
"toolID": "inline:", | ||
"state": { | ||
"continuation": { | ||
"state": { | ||
"input": ":\"foo\":\"123\"}\n", | ||
"completion": { | ||
"model": "gpt-4o", | ||
"internalSystemPrompt": false, | ||
"messages": [ | ||
{ | ||
"role": "system", | ||
"content": [ | ||
{ | ||
"text": "Say hi" | ||
} | ||
], | ||
"usage": {} | ||
}, | ||
{ | ||
"role": "user", | ||
"content": [ | ||
{ | ||
"text": ":\"foo\":\"123\"}\n" | ||
} | ||
], | ||
"usage": {} | ||
}, | ||
{ | ||
"role": "assistant", | ||
"content": [ | ||
{ | ||
"text": "TEST RESULT CALL: 2" | ||
} | ||
], | ||
"usage": {} | ||
} | ||
], | ||
"chat": true | ||
} | ||
}, | ||
"result": "TEST RESULT CALL: 2" | ||
}, | ||
"continuationToolID": "inline:" | ||
} | ||
}` |