| 79 | } |
| 80 | |
| 81 | export interface TogetherAIResponse { |
| 82 | id: string; |
| 83 | status: string; |
| 84 | prompt: string[]; |
| 85 | model: string; |
| 86 | model_owner: string; |
| 87 | num_returns: number; |
| 88 | args: { |
| 89 | max_tokens: number; |
| 90 | temperature: number; |
| 91 | top_p: number; |
| 92 | repetition_penalty: number; |
| 93 | model: string; |
| 94 | prompt: string[]; |
| 95 | request_type: string; |
| 96 | stop: string[]; |
| 97 | }; |
| 98 | subjobs: string[]; |
| 99 | output: { |
| 100 | usage: { |
| 101 | prompt_tokens: number; |
| 102 | completion_tokens: number; |
| 103 | total_tokens: number; |
| 104 | }; |
| 105 | result_type: string; |
| 106 | choices: {}[]; |
| 107 | }; |
| 108 | } |
| 109 | |
| 110 | export interface AnthropicLegacyResponse { |
| 111 | type: string; |
nothing calls this directly
no outgoing calls
no test coverage detected