feat(self-hosted-llm): add send prompt and send chat prompt actions

This commit is contained in:
Ali BARIN
2023-12-20 16:15:30 +00:00
parent d070e976b0
commit a8b85cdb0d
13 changed files with 375 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
import defineApp from '../../helpers/define-app';
import addAuthHeader from './common/add-auth-header';
import setBaseUrl from './common/set-base-url';
import auth from './auth';
import actions from './actions';
import dynamicData from './dynamic-data';
export default defineApp({
name: 'Self-hosted LLM',
key: 'self-hosted-llm',
baseUrl: '',
apiBaseUrl: '',
iconUrl: '{BASE_URL}/apps/self-hosted-llm/assets/favicon.svg',
authDocUrl: 'https://automatisch.io/docs/apps/self-hosted-llm/connection',
primaryColor: '000000',
supportsConnections: true,
beforeRequest: [setBaseUrl, addAuthHeader],
auth,
actions,
dynamicData,
});