-
Notifications
You must be signed in to change notification settings - Fork 376
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
407 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
import React from 'react'; | ||
import { Company } from '../../../components/Company'; | ||
|
||
const sdks = [ | ||
{ | ||
"name": "Jina AI", | ||
"numberOfMethods": 7, | ||
"categories": [ | ||
"artificial_intelligence", | ||
"open_source", | ||
"developer_tools", | ||
"machine_learning", | ||
"ai", | ||
"vector_search", | ||
"embedding" | ||
], | ||
"index": "jina-ai/typescript", | ||
"language": "TypeScript", | ||
"link": "/sdk/jina-ai/typescript/", | ||
"developerDocumentation": "api.jina.ai/redoc", | ||
"openapiGitHubUi": "https://github.com/konfig-sdks/openapi-examples/tree/HEAD/jina-ai/openapi.yaml" | ||
}, | ||
{ | ||
"name": "Jina AI", | ||
"numberOfMethods": 7, | ||
"categories": [ | ||
"artificial_intelligence", | ||
"open_source", | ||
"developer_tools", | ||
"machine_learning", | ||
"ai", | ||
"vector_search", | ||
"embedding" | ||
], | ||
"index": "jina-ai/python", | ||
"language": "Python", | ||
"link": "/sdk/jina-ai/python/", | ||
"developerDocumentation": "api.jina.ai/redoc", | ||
"openapiGitHubUi": "https://github.com/konfig-sdks/openapi-examples/tree/HEAD/jina-ai/openapi.yaml" | ||
}, | ||
{ | ||
"name": "Jina AI", | ||
"numberOfMethods": 7, | ||
"categories": [ | ||
"artificial_intelligence", | ||
"open_source", | ||
"developer_tools", | ||
"machine_learning", | ||
"ai", | ||
"vector_search", | ||
"embedding" | ||
], | ||
"index": "jina-ai/java", | ||
"language": "Java", | ||
"link": "/sdk/jina-ai/java/", | ||
"developerDocumentation": "api.jina.ai/redoc", | ||
"openapiGitHubUi": "https://github.com/konfig-sdks/openapi-examples/tree/HEAD/jina-ai/openapi.yaml" | ||
} | ||
]; | ||
|
||
export default function JinaAi() { | ||
const allCategories: string[] = Array.from( | ||
new Set(sdks.flatMap((service) => service.categories)), | ||
) | ||
return ( | ||
<Company | ||
company="Jina AI" | ||
previewLinkImage="https://raw.githubusercontent.com/konfig-sdks/openapi-examples/HEAD/jina-ai/imagePreview.png" | ||
logo="https://raw.githubusercontent.com/konfig-sdks/openapi-examples/HEAD/jina-ai/logo.png" | ||
favicon="https://raw.githubusercontent.com/konfig-sdks/openapi-examples/HEAD/jina-ai/favicon.png" | ||
sdks={sdks} | ||
homepage="jina.ai" | ||
companyKebabCase="jina-ai" | ||
categories={allCategories} | ||
metaDescription={`Founded in February 2020, Jina AI has swiftly emerged as a global pioneer in multimodal AI technology. Within an impressive timeframe of 20 months, we have successfully raised $37.5M, marking our strong position in the AI industry. Our ground-breaking technology, open-sourced on GitHub, has empowered over 40,000 developers around the globe to seamlessly build and deploy sophisticated multimodal applications. | ||
In 2023, we've made significant strides in advancing AI generation tools grounded on multimodal technology. This innovation has benefited over 250,000 users worldwide, catering to a plethora of unique business requirements. From facilitating business growth and enhancing operational efficiency to optimizing costs, Jina AI is dedicated to empowering businesses to excel in the multimodal era.`} | ||
/> | ||
) | ||
} |
4 changes: 4 additions & 0 deletions
4
generator/konfig-docs/src/pages/sdk/jina-ai/typescript/_first-request.mdx
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,4 @@ | ||
```typescript index.ts | ||
// Create Embedding | ||
const createRepresentationResponse = jinaAi.embeddings.createRepresentation() | ||
``` |
7 changes: 7 additions & 0 deletions
7
generator/konfig-docs/src/pages/sdk/jina-ai/typescript/_getting-started.mdx
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,7 @@ | ||
```typescript index.ts | ||
import { JinaAi } from 'jina-ai-typescript-sdk'; | ||
|
||
const jinaAi = new JinaAi({ | ||
httpBearer: "HTTP_BEARER" | ||
}) | ||
``` |
Oops, something went wrong.