Skip to content
This repository was archived by the owner on Jul 24, 2025. It is now read-only.

Commit dee868f

Browse files
committed
Changes
1 parent c25418a commit dee868f

4 files changed

Lines changed: 40 additions & 8 deletions

File tree

pages/AI_Service.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,7 @@ image: https://cdn.linearfox.com/assets/img/LinearFoxP.png
66
---
77

88
import { Card, Cards } from '@components/card'
9-
import { Callout } from 'nextra-theme-docs'
10-
11-
<Callout type="warning" emoji="⚠️">
12-
Under development
13-
</Callout>
9+
import { Callout } from 'nextra-theme-docs'
1410

1511
# Linear Fox API Documentation
1612

@@ -20,6 +16,10 @@ Linear Fox AI is a set of APIs made for researching and developing AI. This API
2016
## How to use AI APIs?
2117
To use the Linear Fox AI APIs, you must have an account. Open an account [here](https://account.linearfox.com/auth/signup). If you already have an account, create an API Key in the security "settings" or use your account's cookie token to access the API.
2218

19+
<Callout type="info" emoji="ℹ️">
20+
<a class="underline" target="_blank" href="/api-docs">Click here to continue to the OpenAPI docs.</a>
21+
</Callout>
22+
2323
### Simple linearfoxai-python library [git link](https://github.com/Linear-Fox/linearfoxai-python) [pypi link](https://pypi.org/project/linearfoxai/)
2424

2525
This library is still in development, we in very early stages of development. This just a simple code.
@@ -29,7 +29,7 @@ from linearfoxai import LinearFoxAI
2929

3030
class TestAI:
3131
def __init__(self):
32-
self.text_model = "VaporeonML" # Use GPT, PaLM, Vicuna or our trained models
32+
self.text_model = "vulpestra" # Use GPT, PaLM, Vicuna or our vulpestra trained models
3333
self.image_model = "yolov5"
3434
self.audio_model = "wav2vec2"
3535
self.ai = LinearFoxAI("YOUR_API_KEY")

pages/V1_API.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { Callout } from 'nextra-theme-docs';
1111
Our API allows you to access our platform and retrieve data in a programmatic way. In this documentation, you'll find information on how to authenticate your requests, rate limits, and endpoints available for you to use.
1212

1313
<Callout type="info" emoji="ℹ️">
14-
<a class="underline" target="_blank" href="/openapi">First of all, please continue to our OpenAPI documents here to see a list of all endpoints.</a>
14+
<a class="underline" target="_blank" href="/api-docs">First of all, please continue to our OpenAPI documents here to see a list of all endpoints.</a>
1515
</Callout>
1616

1717
## Authentication

pages/V1_API/auth.mdx

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
title: Authentication
3+
description: "Linear Fox documentation site for developers to help them understand the LinearFox API and Services to how to use them."
4+
date: 2023-05-21
5+
image: https://cdn.linearfox.com/assets/img/LinearFoxP.png
6+
---
7+
import { Callout } from 'nextra-theme-docs';
8+
import { Cards, Card } from 'components/card';
9+
import { Security, Update, Other } from '@material-ui/icons';
10+
11+
# Authentication
12+
Most API requests require authentication. After you create account, you can create a API-Key or grab the access token from the browser console log "cookies" of your account. Set this token in the Authorization header of requests to the API for protected endpoints.
13+
14+
This API enables you to manage all aspects of your Linear Fox account and services.
15+
Authentication methods
16+
- ```API Key``` - Create and manage access tokens for your account.
17+
- ```OAuth 2.0 Bearer Token``` - Authenticate with a bearer token.
18+
19+
Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret API keys in publicly accessible areas such as GitHub, client-side code, and so forth.
20+
21+
<br />
22+
<div style={{ display: 'flex', justifyContent: 'space-between' }}>
23+
<Card image arrow title="AI" href="https://ai.linearfox.com/" style={{ width: '30%' }}>
24+
<>![Documentation theme](https://ai.linearfox.com/assets/output-gens/susfox.png)</>
25+
</Card>
26+
<Card image arrow title="Research" href="https://research.linearfox.com/" style={{ width: '30%' }}>
27+
<>![Documentation theme](https://ai.linearfox.com/assets/output-gens/79cfab4d-48e3-40a3-a824-8e3f34da3fc7.png)</>
28+
</Card>
29+
<Card image arrow title="Account" href="https://account.linearfox.com/" style={{ width: '30%' }}>
30+
<>![Documentation theme](https://ai.linearfox.com/assets/output-gens/ctfox.png)</>
31+
</Card>
32+
</div>

theme.config.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const config = {
2525
return (
2626
<>
2727
<Link target="_blank" href="https://linearfox.com/">🦊 Linear Fox Website →</Link>
28-
<Link target="_blank" href="https://rvlt.gg/5BS2X1xs">👨‍💻 Our Revolt Server →</Link>
28+
<Link target="_blank" href="https://discord.linearfox.com/">👨‍💻 Our Discord Server →</Link>
2929
</>
3030
);
3131
},

0 commit comments

Comments
 (0)