MCPcopy Create free account
hub / github.com/Superflows-AI/superflows / TogetherAIResponse

Interface TogetherAIResponse

lib/models.ts:81–108  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

79}
80
81export 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
110export interface AnthropicLegacyResponse {
111 type: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected