feat(together-ai): add app with create completion and create chat completion actions

This commit is contained in:
Ali BARIN
2025-01-22 15:14:15 +00:00
parent e686d3b067
commit bb204781e0
17 changed files with 433 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
import defineApp from '../../helpers/define-app.js';
import addAuthHeader from './common/add-auth-header.js';
import auth from './auth/index.js';
import actions from './actions/index.js';
import dynamicData from './dynamic-data/index.js';
export default defineApp({
name: 'Together AI',
key: 'together-ai',
baseUrl: 'https://together.ai',
apiBaseUrl: 'https://api.together.xyz',
iconUrl: '{BASE_URL}/apps/together-ai/assets/favicon.svg',
authDocUrl: '{DOCS_URL}/apps/together-ai/connection',
primaryColor: '#000000',
supportsConnections: true,
beforeRequest: [addAuthHeader],
auth,
actions,
dynamicData,
});