Skip to content

Commit

Permalink
yarn pages
Browse files Browse the repository at this point in the history
  • Loading branch information
dphuang2 committed Mar 26, 2024
1 parent c677939 commit fdb48e2
Show file tree
Hide file tree
Showing 6 changed files with 407 additions and 0 deletions.
24 changes: 24 additions & 0 deletions generator/konfig-docs/src/pages/sdk/companies.json
Original file line number Diff line number Diff line change
Expand Up @@ -2708,6 +2708,30 @@
"difficultyScore": 20.25,
"subpath": "/sdk/nasa"
},
{
"parentCategories": [
"Artificial Intelligence"
],
"subCategories": [
"AI Tools"
],
"favicon": "https://raw.githubusercontent.com/konfig-sdks/openapi-examples/HEAD/jina-ai/favicon.png",
"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.\n\nIn 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.",
"services": [],
"company": "Jina AI",
"keywords": [
"artificial_intelligence",
"open_source",
"developer_tools",
"machine_learning",
"ai",
"vector_search",
"embedding"
],
"numberOfApis": 1,
"difficultyScore": 20,
"subpath": "/sdk/jina-ai"
},
{
"parentCategories": [
"Content & Files"
Expand Down
80 changes: 80 additions & 0 deletions generator/konfig-docs/src/pages/sdk/jina-ai/index.tsx
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.`}
/>
)
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
```typescript index.ts
// Create Embedding
const createRepresentationResponse = jinaAi.embeddings.createRepresentation()
```
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"
})
```
Loading

0 comments on commit fdb48e2

Please sign in to comment.