12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319 |
- import { CodeGroup } from '@/app/components/develop/code.tsx'
- import { Row, Col, Properties, Property, Heading, SubProperty, Paragraph } from '@/app/components/develop/md.tsx'
- # Knowledge API
- <div>
- ### Authentication
- Service API of Dify authenticates using an `API-Key`.
- It is suggested that developers store the `API-Key` in the backend instead of sharing or storing it in the client side to avoid the leakage of the `API-Key`, which may lead to property loss.
- All API requests should include your `API-Key` in the **`Authorization`** HTTP Header, as shown below:
- <CodeGroup title="Code">
- ```javascript
- Authorization: Bearer {API_KEY}
- ```
- </CodeGroup>
- </div>
- <hr className='ml-0 mr-0' />
- <Heading
- url='/datasets/{dataset_id}/document/create-by-text'
- method='POST'
- title='Create a Document from Text'
- name='#create-by-text'
- />
- <Row>
- <Col>
- This API is based on an existing knowledge and creates a new document through text based on this knowledge.
- ### Params
- <Properties>
- <Property name='dataset_id' type='string' key='dataset_id'>
- Knowledge ID
- </Property>
- </Properties>
- ### Request Body
- <Properties>
- <Property name='name' type='string' key='name'>
- Document name
- </Property>
- <Property name='text' type='string' key='text'>
- Document content
- </Property>
- <Property name='indexing_technique' type='string' key='indexing_technique'>
- Index mode
- - <code>high_quality</code> High quality: embedding using embedding model, built as vector database index
- - <code>economy</code> Economy: Build using inverted index of keyword table index
- </Property>
- <Property name='process_rule' type='object' key='process_rule'>
- Processing rules
- - <code>mode</code> (string) Cleaning, segmentation mode, automatic / custom
- - <code>rules</code> (object) Custom rules (in automatic mode, this field is empty)
- - <code>pre_processing_rules</code> (array[object]) Preprocessing rules
- - <code>id</code> (string) Unique identifier for the preprocessing rule
- - enumerate
- - <code>remove_extra_spaces</code> Replace consecutive spaces, newlines, tabs
- - <code>remove_urls_emails</code> Delete URL, email address
- - <code>enabled</code> (bool) Whether to select this rule or not. If no document ID is passed in, it represents the default value.
- - <code>segmentation</code> (object) Segmentation rules
- - <code>separator</code> Custom segment identifier, currently only allows one delimiter to be set. Default is \n
- - <code>max_tokens</code> Maximum length (token) defaults to 1000
- </Property>
- </Properties>
- </Col>
- <Col sticky>
- <CodeGroup
- title="Request"
- tag="POST"
- label="/datasets/{dataset_id}/document/create-by-text"
- targetCode={`curl --location --request POST '${props.apiBaseUrl}/datasets/{dataset_id}/document/create-by-text' \\\n--header 'Authorization: Bearer {api_key}' \\\n--header 'Content-Type: application/json' \\\n--data-raw '{"name": "text","text": "text","indexing_technique": "high_quality","process_rule": {"mode": "automatic"}}'`}
- >
- ```bash {{ title: 'cURL' }}
- curl --location --request POST '${props.apiBaseUrl}/datasets/{dataset_id}/document/create-by-text' \
- --header 'Authorization: Bearer {api_key}' \
- --header 'Content-Type: application/json' \
- --data-raw '{
- "name": "text",
- "text": "text",
- "indexing_technique": "high_quality",
- "process_rule": {
- "mode": "automatic"
- }
- }'
- ```
- </CodeGroup>
- <CodeGroup title="Response">
- ```json {{ title: 'Response' }}
- {
- "document": {
- "id": "",
- "position": 1,
- "data_source_type": "upload_file",
- "data_source_info": {
- "upload_file_id": ""
- },
- "dataset_process_rule_id": "",
- "name": "text.txt",
- "created_from": "api",
- "created_by": "",
- "created_at": 1695690280,
- "tokens": 0,
- "indexing_status": "waiting",
- "error": null,
- "enabled": true,
- "disabled_at": null,
- "disabled_by": null,
- "archived": false,
- "display_status": "queuing",
- "word_count": 0,
- "hit_count": 0,
- "doc_form": "text_model"
- },
- "batch": ""
- }
- ```
- </CodeGroup>
- </Col>
- </Row>
- <hr className='ml-0 mr-0' />
- <Heading
- url='/datasets/{dataset_id}/document/create-by-file'
- method='POST'
- title='Create a Document from a File'
- name='#create-by-file'
- />
- <Row>
- <Col>
- This API is based on an existing knowledge and creates a new document through a file based on this knowledge.
- ### Params
- <Properties>
- <Property name='dataset_id' type='string' key='dataset_id'>
- Knowledge ID
- </Property>
- </Properties>
- ### Request Body
- <Properties>
- <Property name='data' type='multipart/form-data json string' key='data'>
- - <code>original_document_id</code> Source document ID (optional)
- - Used to re-upload the document or modify the document cleaning and segmentation configuration. The missing information is copied from the source document
- - The source document cannot be an archived document
- - When original_document_id is passed in, the update operation is performed on behalf of the document. process_rule is a fillable item. If not filled in, the segmentation method of the source document will be used by default
- - When original_document_id is not passed in, the new operation is performed on behalf of the document, and process_rule is required
- - <code>indexing_technique</code> Index mode
- - <code>high_quality</code> High quality: embedding using embedding model, built as vector database index
- - <code>economy</code> Economy: Build using inverted index of keyword table index
- - <code>process_rule</code> Processing rules
- - <code>mode</code> (string) Cleaning, segmentation mode, automatic / custom
- - <code>rules</code> (object) Custom rules (in automatic mode, this field is empty)
- - <code>pre_processing_rules</code> (array[object]) Preprocessing rules
- - <code>id</code> (string) Unique identifier for the preprocessing rule
- - enumerate
- - <code>remove_extra_spaces</code> Replace consecutive spaces, newlines, tabs
- - <code>remove_urls_emails</code> Delete URL, email address
- - <code>enabled</code> (bool) Whether to select this rule or not. If no document ID is passed in, it represents the default value.
- - <code>segmentation</code> (object) Segmentation rules
- - <code>separator</code> Custom segment identifier, currently only allows one delimiter to be set. Default is \n
- - <code>max_tokens</code> Maximum length (token) defaults to 1000
- </Property>
- <Property name='file' type='multipart/form-data' key='file'>
- Files that need to be uploaded.
- </Property>
- </Properties>
- </Col>
- <Col sticky>
- <CodeGroup
- title="Request"
- tag="POST"
- label="/datasets/{dataset_id}/document/create-by-file"
- targetCode={`curl --location --request POST '${props.apiBaseUrl}/datasets/{dataset_id}/document/create-by-file' \\\n--header 'Authorization: Bearer {api_key}' \\\n--form 'data="{"indexing_technique":"high_quality","process_rule":{"rules":{"pre_processing_rules":[{"id":"remove_extra_spaces","enabled":true},{"id":"remove_urls_emails","enabled":true}],"segmentation":{"separator":"###","max_tokens":500}},"mode":"custom"}}";type=text/plain' \\\n--form 'file=@"/path/to/file"'`}
- >
- ```bash {{ title: 'cURL' }}
- curl --location --request POST '${props.apiBaseUrl}/datasets/{dataset_id}/document/create-by-file' \
- --header 'Authorization: Bearer {api_key}' \
- --form 'data="{\"name\":\"Dify\",\"indexing_technique\":\"high_quality\",\"process_rule\":{\"rules\":{\"pre_processing_rules\":[{\"id\":\"remove_extra_spaces\",\"enabled\":true},{\"id\":\"remove_urls_emails\",\"enabled\":true}],\"segmentation\":{\"separator\":\"###\",\"max_tokens\":500}},\"mode\":\"custom\"}}";type=text/plain' \
- --form 'file=@"/path/to/file"'
- ```
- </CodeGroup>
- <CodeGroup title="Response">
- ```json {{ title: 'Response' }}
- {
- "document": {
- "id": "",
- "position": 1,
- "data_source_type": "upload_file",
- "data_source_info": {
- "upload_file_id": ""
- },
- "dataset_process_rule_id": "",
- "name": "Dify.txt",
- "created_from": "api",
- "created_by": "",
- "created_at": 1695308667,
- "tokens": 0,
- "indexing_status": "waiting",
- "error": null,
- "enabled": true,
- "disabled_at": null,
- "disabled_by": null,
- "archived": false,
- "display_status": "queuing",
- "word_count": 0,
- "hit_count": 0,
- "doc_form": "text_model"
- },
- "batch": ""
- }
- ```
- </CodeGroup>
- </Col>
- </Row>
- <hr className='ml-0 mr-0' />
- <Heading
- url='/datasets'
- method='POST'
- title='Create an Empty Knowledge Base'
- name='#create_empty_dataset'
- />
- <Row>
- <Col>
- ### Request Body
- <Properties>
- <Property name='name' type='string' key='name'>
- Knowledge name
- </Property>
- <Property name='description' type='string' key='description'>
- Knowledge description (optional)
- </Property>
- <Property name='indexing_technique' type='string' key='indexing_technique'>
- Index technique (optional)
- - <code>high_quality</code> High quality
- - <code>economy</code> Economy
- </Property>
- <Property name='permission' type='string' key='permission'>
- Permission
- - <code>only_me</code> Only me
- - <code>all_team_members</code> All team members
- - <code>partial_members</code> Partial members
- </Property>
- <Property name='provider' type='string' key='provider'>
- Provider (optional, default: vendor)
- - <code>vendor</code> Vendor
- - <code>external</code> External knowledge
- </Property>
- <Property name='external_knowledge_api_id' type='str' key='external_knowledge_api_id'>
- External knowledge API ID (optional)
- </Property>
- <Property name='external_knowledge_id' type='str' key='external_knowledge_id'>
- External knowledge ID (optional)
- </Property>
- </Properties>
- </Col>
- <Col sticky>
- <CodeGroup
- title="Request"
- tag="POST"
- label="/datasets"
- targetCode={`curl --location --request POST '${props.apiBaseUrl}/datasets' \\\n--header 'Authorization: Bearer {api_key}' \\\n--header 'Content-Type: application/json' \\\n--data-raw '{"name": "name", "permission": "only_me"}'`}
- >
- ```bash {{ title: 'cURL' }}
- curl --location --request POST '${apiBaseUrl}/v1/datasets' \
- --header 'Authorization: Bearer {api_key}' \
- --header 'Content-Type: application/json' \
- --data-raw '{
- "name": "name",
- "permission": "only_me"
- }'
- ```
- </CodeGroup>
- <CodeGroup title="Response">
- ```json {{ title: 'Response' }}
- {
- "id": "",
- "name": "name",
- "description": null,
- "provider": "vendor",
- "permission": "only_me",
- "data_source_type": null,
- "indexing_technique": null,
- "app_count": 0,
- "document_count": 0,
- "word_count": 0,
- "created_by": "",
- "created_at": 1695636173,
- "updated_by": "",
- "updated_at": 1695636173,
- "embedding_model": null,
- "embedding_model_provider": null,
- "embedding_available": null
- }
- ```
- </CodeGroup>
- </Col>
- </Row>
- <hr className='ml-0 mr-0' />
- <Heading
- url='/datasets'
- method='GET'
- title='Get Knowledge Base List'
- name='#dataset_list'
- />
- <Row>
- <Col>
- ### Query
- <Properties>
- <Property name='page' type='string' key='page'>
- Page number
- </Property>
- <Property name='limit' type='string' key='limit'>
- Number of items returned, default 20, range 1-100
- </Property>
- </Properties>
- </Col>
- <Col sticky>
- <CodeGroup
- title="Request"
- tag="GET"
- label="/datasets"
- targetCode={`curl --location --request GET '${props.apiBaseUrl}/datasets?page=1&limit=20' \\\n--header 'Authorization: Bearer {api_key}'`}
- >
- ```bash {{ title: 'cURL' }}
- curl --location --request GET '${props.apiBaseUrl}/datasets?page=1&limit=20' \
- --header 'Authorization: Bearer {api_key}'
- ```
- </CodeGroup>
- <CodeGroup title="Response">
- ```json {{ title: 'Response' }}
- {
- "data": [
- {
- "id": "",
- "name": "name",
- "description": "desc",
- "permission": "only_me",
- "data_source_type": "upload_file",
- "indexing_technique": "",
- "app_count": 2,
- "document_count": 10,
- "word_count": 1200,
- "created_by": "",
- "created_at": "",
- "updated_by": "",
- "updated_at": ""
- },
- ...
- ],
- "has_more": true,
- "limit": 20,
- "total": 50,
- "page": 1
- }
- ```
- </CodeGroup>
- </Col>
- </Row>
- <hr className='ml-0 mr-0' />
- <Heading
- url='/datasets/{dataset_id}'
- method='DELETE'
- title='Delete a Knowledge Base'
- name='#delete_dataset'
- />
- <Row>
- <Col>
- ### Params
- <Properties>
- <Property name='dataset_id' type='string' key='dataset_id'>
- Knowledge ID
- </Property>
- </Properties>
- </Col>
- <Col sticky>
- <CodeGroup
- title="Request"
- tag="DELETE"
- label="/datasets/{dataset_id}"
- targetCode={`curl --location --request DELETE '${props.apiBaseUrl}/datasets/{dataset_id}' \\\n--header 'Authorization: Bearer {api_key}'`}
- >
- ```bash {{ title: 'cURL' }}
- curl --location --request DELETE '${props.apiBaseUrl}/datasets/{dataset_id}' \
- --header 'Authorization: Bearer {api_key}'
- ```
- </CodeGroup>
- <CodeGroup title="Response">
- ```text {{ title: 'Response' }}
- 204 No Content
- ```
- </CodeGroup>
- </Col>
- </Row>
- <hr className='ml-0 mr-0' />
- <Heading
- url='/datasets/{dataset_id}/documents/{document_id}/update-by-text'
- method='POST'
- title='Update a Document with Text'
- name='#update-by-text'
- />
- <Row>
- <Col>
- This API is based on an existing knowledge and updates the document through text based on this knowledge.
- ### Params
- <Properties>
- <Property name='dataset_id' type='string' key='dataset_id'>
- Knowledge ID
- </Property>
- <Property name='document_id' type='string' key='document_id'>
- Document ID
- </Property>
- </Properties>
- ### Request Body
- <Properties>
- <Property name='name' type='string' key='name'>
- Document name (optional)
- </Property>
- <Property name='text' type='string' key='text'>
- Document content (optional)
- </Property>
- <Property name='process_rule' type='object' key='process_rule'>
- Processing rules
- - <code>mode</code> (string) Cleaning, segmentation mode, automatic / custom
- - <code>rules</code> (object) Custom rules (in automatic mode, this field is empty)
- - <code>pre_processing_rules</code> (array[object]) Preprocessing rules
- - <code>id</code> (string) Unique identifier for the preprocessing rule
- - enumerate
- - <code>remove_extra_spaces</code> Replace consecutive spaces, newlines, tabs
- - <code>remove_urls_emails</code> Delete URL, email address
- - <code>enabled</code> (bool) Whether to select this rule or not. If no document ID is passed in, it represents the default value.
- - <code>segmentation</code> (object) Segmentation rules
- - <code>separator</code> Custom segment identifier, currently only allows one delimiter to be set. Default is \n
- - <code>max_tokens</code> Maximum length (token) defaults to 1000
- </Property>
- </Properties>
- </Col>
- <Col sticky>
- <CodeGroup
- title="Request"
- tag="POST"
- label="/datasets/{dataset_id}/documents/{document_id}/update-by-text"
- targetCode={`curl --location --request POST '${props.apiBaseUrl}/datasets/{dataset_id}/documents/{document_id}/update-by-text' \\\n--header 'Authorization: Bearer {api_key}' \\\n--header 'Content-Type: application/json' \\\n--data-raw '{"name": "name","text": "text"}'`}
- >
- ```bash {{ title: 'cURL' }}
- curl --location --request POST '${props.apiBaseUrl}/datasets/{dataset_id}/documents/{document_id}/update-by-text' \
- --header 'Authorization: Bearer {api_key}' \
- --header 'Content-Type: application/json' \
- --data-raw '{
- "name": "name",
- "text": "text"
- }'
- ```
- </CodeGroup>
- <CodeGroup title="Response">
- ```json {{ title: 'Response' }}
- {
- "document": {
- "id": "",
- "position": 1,
- "data_source_type": "upload_file",
- "data_source_info": {
- "upload_file_id": ""
- },
- "dataset_process_rule_id": "",
- "name": "name.txt",
- "created_from": "api",
- "created_by": "",
- "created_at": 1695308667,
- "tokens": 0,
- "indexing_status": "waiting",
- "error": null,
- "enabled": true,
- "disabled_at": null,
- "disabled_by": null,
- "archived": false,
- "display_status": "queuing",
- "word_count": 0,
- "hit_count": 0,
- "doc_form": "text_model"
- },
- "batch": ""
- }
- ```
- </CodeGroup>
- </Col>
- </Row>
- <hr className='ml-0 mr-0' />
- <Heading
- url='/datasets/{dataset_id}/documents/{document_id}/update-by-file'
- method='POST'
- title='Update a Document with a File'
- name='#update-by-file'
- />
- <Row>
- <Col>
- This API is based on an existing knowledge, and updates documents through files based on this knowledge
- ### Params
- <Properties>
- <Property name='dataset_id' type='string' key='dataset_id'>
- Knowledge ID
- </Property>
- <Property name='document_id' type='string' key='document_id'>
- Document ID
- </Property>
- </Properties>
- ### Request Body
- <Properties>
- <Property name='name' type='string' key='name'>
- Document name (optional)
- </Property>
- <Property name='file' type='multipart/form-data' key='file'>
- Files to be uploaded
- </Property>
- <Property name='process_rule' type='object' key='process_rule'>
- Processing rules
- - <code>mode</code> (string) Cleaning, segmentation mode, automatic / custom
- - <code>rules</code> (object) Custom rules (in automatic mode, this field is empty)
- - <code>pre_processing_rules</code> (array[object]) Preprocessing rules
- - <code>id</code> (string) Unique identifier for the preprocessing rule
- - enumerate
- - <code>remove_extra_spaces</code> Replace consecutive spaces, newlines, tabs
- - <code>remove_urls_emails</code> Delete URL, email address
- - <code>enabled</code> (bool) Whether to select this rule or not. If no document ID is passed in, it represents the default value.
- - <code>segmentation</code> (object) Segmentation rules
- - <code>separator</code> Custom segment identifier, currently only allows one delimiter to be set. Default is \n
- - <code>max_tokens</code> Maximum length (token) defaults to 1000
- </Property>
- </Properties>
- </Col>
- <Col sticky>
- <CodeGroup
- title="Request"
- tag="POST"
- label="/datasets/{dataset_id}/documents/{document_id}/update-by-file"
- targetCode={`curl --location --request POST '${props.apiBaseUrl}/datasets/{dataset_id}/documents/{document_id}/update-by-file' \\\n--header 'Authorization: Bearer {api_key}' \\\n--form 'data="{"name":"Dify","indexing_technique":"high_quality","process_rule":{"rules":{"pre_processing_rules":[{"id":"remove_extra_spaces","enabled":true},{"id":"remove_urls_emails","enabled":true}],"segmentation":{"separator":"###","max_tokens":500}},"mode":"custom"}}";type=text/plain' \\\n--form 'file=@"/path/to/file"'`}
- >
- ```bash {{ title: 'cURL' }}
- curl --location --request POST '${props.apiBaseUrl}/datasets/{dataset_id}/documents/{document_id}/update-by-file' \
- --header 'Authorization: Bearer {api_key}' \
- --form 'data="{\"name\":\"Dify\",\"indexing_technique\":\"high_quality\",\"process_rule\":{\"rules\":{\"pre_processing_rules\":[{\"id\":\"remove_extra_spaces\",\"enabled\":true},{\"id\":\"remove_urls_emails\",\"enabled\":true}],\"segmentation\":{\"separator\":\"###\",\"max_tokens\":500}},\"mode\":\"custom\"}}";type=text/plain' \
- --form 'file=@"/path/to/file"'
- ```
- </CodeGroup>
- <CodeGroup title="Response">
- ```json {{ title: 'Response' }}
- {
- "document": {
- "id": "",
- "position": 1,
- "data_source_type": "upload_file",
- "data_source_info": {
- "upload_file_id": ""
- },
- "dataset_process_rule_id": "",
- "name": "Dify.txt",
- "created_from": "api",
- "created_by": "",
- "created_at": 1695308667,
- "tokens": 0,
- "indexing_status": "waiting",
- "error": null,
- "enabled": true,
- "disabled_at": null,
- "disabled_by": null,
- "archived": false,
- "display_status": "queuing",
- "word_count": 0,
- "hit_count": 0,
- "doc_form": "text_model"
- },
- "batch": "20230921150427533684"
- }
- ```
- </CodeGroup>
- </Col>
- </Row>
- <hr className='ml-0 mr-0' />
- <Heading
- url='/datasets/{dataset_id}/documents/{batch}/indexing-status'
- method='GET'
- title='Get Document Embedding Status (Progress)'
- name='#indexing_status'
- />
- <Row>
- <Col>
- ### Params
- <Properties>
- <Property name='dataset_id' type='string' key='dataset_id'>
- Knowledge ID
- </Property>
- <Property name='batch' type='string' key='batch'>
- Batch number of uploaded documents
- </Property>
- </Properties>
- </Col>
- <Col sticky>
- <CodeGroup
- title="Request"
- tag="GET"
- label="/datasets/{dataset_id}/documents/{batch}/indexing-status"
- targetCode={`curl --location --request GET '${props.apiBaseUrl}/datasets/{dataset_id}/documents/{batch}/indexing-status' \\\n--header 'Authorization: Bearer {api_key}'`}
- >
- ```bash {{ title: 'cURL' }}
- curl --location --request GET '${props.apiBaseUrl}/datasets/{dataset_id}/documents/{batch}/indexing-status' \
- --header 'Authorization: Bearer {api_key}' \
- ```
- </CodeGroup>
- <CodeGroup title="Response">
- ```json {{ title: 'Response' }}
- {
- "data":[{
- "id": "",
- "indexing_status": "indexing",
- "processing_started_at": 1681623462.0,
- "parsing_completed_at": 1681623462.0,
- "cleaning_completed_at": 1681623462.0,
- "splitting_completed_at": 1681623462.0,
- "completed_at": null,
- "paused_at": null,
- "error": null,
- "stopped_at": null,
- "completed_segments": 24,
- "total_segments": 100
- }]
- }
- ```
- </CodeGroup>
- </Col>
- </Row>
- <hr className='ml-0 mr-0' />
- <Heading
- url='/datasets/{dataset_id}/documents/{document_id}'
- method='DELETE'
- title='Delete a Document'
- name='#delete_document'
- />
- <Row>
- <Col>
- ### Params
- <Properties>
- <Property name='dataset_id' type='string' key='dataset_id'>
- Knowledge ID
- </Property>
- <Property name='document_id' type='string' key='document_id'>
- Document ID
- </Property>
- </Properties>
- </Col>
- <Col sticky>
- <CodeGroup
- title="Request"
- tag="DELETE"
- label="/datasets/{dataset_id}/documents/{document_id}"
- targetCode={`curl --location --request DELETE '${props.apiBaseUrl}/datasets/{dataset_id}/documents/{document_id}' \\\n--header 'Authorization: Bearer {api_key}'`}
- >
- ```bash {{ title: 'cURL' }}
- curl --location --request DELETE '${props.apiBaseUrl}/datasets/{dataset_id}/documents/{document_id}' \
- --header 'Authorization: Bearer {api_key}' \
- ```
- </CodeGroup>
- <CodeGroup title="Response">
- ```json {{ title: 'Response' }}
- {
- "result": "success"
- }
- ```
- </CodeGroup>
- </Col>
- </Row>
- <hr className='ml-0 mr-0' />
- <Heading
- url='/datasets/{dataset_id}/documents'
- method='GET'
- title='Get the Document List of a Knowledge Base'
- name='#dataset_document_list'
- />
- <Row>
- <Col>
- ### Params
- <Properties>
- <Property name='dataset_id' type='string' key='dataset_id'>
- Knowledge ID
- </Property>
- </Properties>
- ### Query
- <Properties>
- <Property name='keyword' type='string' key='keyword'>
- Search keywords, currently only search document names (optional)
- </Property>
- <Property name='page' type='string' key='page'>
- Page number (optional)
- </Property>
- <Property name='limit' type='string' key='limit'>
- Number of items returned, default 20, range 1-100 (optional)
- </Property>
- </Properties>
- </Col>
- <Col sticky>
- <CodeGroup
- title="Request"
- tag="GET"
- label="/datasets/{dataset_id}/documents"
- targetCode={`curl --location --request GET '${props.apiBaseUrl}/datasets/{dataset_id}/documents' \\\n--header 'Authorization: Bearer {api_key}'`}
- >
- ```bash {{ title: 'cURL' }}
- curl --location --request GET '${props.apiBaseUrl}/datasets/{dataset_id}/documents' \
- --header 'Authorization: Bearer {api_key}' \
- ```
- </CodeGroup>
- <CodeGroup title="Response">
- ```json {{ title: 'Response' }}
- {
- "data": [
- {
- "id": "",
- "position": 1,
- "data_source_type": "file_upload",
- "data_source_info": null,
- "dataset_process_rule_id": null,
- "name": "dify",
- "created_from": "",
- "created_by": "",
- "created_at": 1681623639,
- "tokens": 0,
- "indexing_status": "waiting",
- "error": null,
- "enabled": true,
- "disabled_at": null,
- "disabled_by": null,
- "archived": false
- },
- ],
- "has_more": false,
- "limit": 20,
- "total": 9,
- "page": 1
- }
- ```
- </CodeGroup>
- </Col>
- </Row>
- <hr className='ml-0 mr-0' />
- <Heading
- url='/datasets/{dataset_id}/documents/{document_id}/segments'
- method='POST'
- title='Add Chunks to a Document'
- name='#create_new_segment'
- />
- <Row>
- <Col>
- ### Params
- <Properties>
- <Property name='dataset_id' type='string' key='dataset_id'>
- Knowledge ID
- </Property>
- <Property name='document_id' type='string' key='document_id'>
- Document ID
- </Property>
- </Properties>
- ### Request Body
- <Properties>
- <Property name='segments' type='object list' key='segments'>
- - <code>content</code> (text) Text content / question content, required
- - <code>answer</code> (text) Answer content, if the mode of the knowledge is Q&A mode, pass the value (optional)
- - <code>keywords</code> (list) Keywords (optional)
- </Property>
- </Properties>
- </Col>
- <Col sticky>
- <CodeGroup
- title="Request"
- tag="POST"
- label="/datasets/{dataset_id}/documents/{document_id}/segments"
- targetCode={`curl --location --request POST '${props.apiBaseUrl}/datasets/{dataset_id}/documents/{document_id}/segments' \\\n--header 'Authorization: Bearer {api_key}' \\\n--header 'Content-Type: application/json' \\\n--data-raw '{"segments": [{"content": "1","answer": "1","keywords": ["a"]}]}'`}
- >
- ```bash {{ title: 'cURL' }}
- curl --location --request POST '${props.apiBaseUrl}/datasets/{dataset_id}/documents/{document_id}/segments' \
- --header 'Authorization: Bearer {api_key}' \
- --header 'Content-Type: application/json' \
- --data-raw '{
- "segments": [
- {
- "content": "1",
- "answer": "1",
- "keywords": ["a"]
- }
- ]
- }'
- ```
- </CodeGroup>
- <CodeGroup title="Response">
- ```json {{ title: 'Response' }}
- {
- "data": [{
- "id": "",
- "position": 1,
- "document_id": "",
- "content": "1",
- "answer": "1",
- "word_count": 25,
- "tokens": 0,
- "keywords": [
- "a"
- ],
- "index_node_id": "",
- "index_node_hash": "",
- "hit_count": 0,
- "enabled": true,
- "disabled_at": null,
- "disabled_by": null,
- "status": "completed",
- "created_by": "",
- "created_at": 1695312007,
- "indexing_at": 1695312007,
- "completed_at": 1695312007,
- "error": null,
- "stopped_at": null
- }],
- "doc_form": "text_model"
- }
- ```
- </CodeGroup>
- </Col>
- </Row>
- <hr className='ml-0 mr-0' />
- <Heading
- url='/datasets/{dataset_id}/documents/{document_id}/segments'
- method='GET'
- title='Get Chunks from a Document'
- name='#get_segment'
- />
- <Row>
- <Col>
- ### Path
- <Properties>
- <Property name='dataset_id' type='string' key='dataset_id'>
- Knowledge ID
- </Property>
- <Property name='document_id' type='string' key='document_id'>
- Document ID
- </Property>
- </Properties>
- ### Query
- <Properties>
- <Property name='keyword' type='string' key='keyword'>
- Keyword (optional)
- </Property>
- <Property name='status' type='string' key='status'>
- Search status, completed
- </Property>
- </Properties>
- </Col>
- <Col sticky>
- <CodeGroup
- title="Request"
- tag="GET"
- label="/datasets/{dataset_id}/documents/{document_id}/segments"
- targetCode={`curl --location --request GET '${props.apiBaseUrl}/datasets/{dataset_id}/documents/{document_id}/segments' \\\n--header 'Authorization: Bearer {api_key}' \\\n--header 'Content-Type: application/json'`}
- >
- ```bash {{ title: 'cURL' }}
- curl --location --request GET '${props.apiBaseUrl}/datasets/{dataset_id}/documents/{document_id}/segments' \
- --header 'Authorization: Bearer {api_key}' \
- --header 'Content-Type: application/json'
- ```
- </CodeGroup>
- <CodeGroup title="Response">
- ```json {{ title: 'Response' }}
- {
- "data": [{
- "id": "",
- "position": 1,
- "document_id": "",
- "content": "1",
- "answer": "1",
- "word_count": 25,
- "tokens": 0,
- "keywords": [
- "a"
- ],
- "index_node_id": "",
- "index_node_hash": "",
- "hit_count": 0,
- "enabled": true,
- "disabled_at": null,
- "disabled_by": null,
- "status": "completed",
- "created_by": "",
- "created_at": 1695312007,
- "indexing_at": 1695312007,
- "completed_at": 1695312007,
- "error": null,
- "stopped_at": null
- }],
- "doc_form": "text_model"
- }
- ```
- </CodeGroup>
- </Col>
- </Row>
- <hr className='ml-0 mr-0' />
- <Heading
- url='/datasets/{dataset_id}/documents/{document_id}/segments/{segment_id}'
- method='DELETE'
- title='Delete a Chunk in a Document'
- name='#delete_segment'
- />
- <Row>
- <Col>
- ### Path
- <Properties>
- <Property name='dataset_id' type='string' key='dataset_id'>
- Knowledge ID
- </Property>
- <Property name='document_id' type='string' key='document_id'>
- Document ID
- </Property>
- <Property name='segment_id' type='string' key='segment_id'>
- Document Segment ID
- </Property>
- </Properties>
- </Col>
- <Col sticky>
- <CodeGroup
- title="Request"
- tag="DELETE"
- label="/datasets/{dataset_id}/documents/{document_id}/segments/{segment_id}"
- targetCode={`curl --location --request DELETE '${props.apiBaseUrl}/datasets/{dataset_id}/segments/{segment_id}' \\\n--header 'Authorization: Bearer {api_key}' \\\n--header 'Content-Type: application/json'`}
- >
- ```bash {{ title: 'cURL' }}
- curl --location --request DELETE '${props.apiBaseUrl}/datasets/{dataset_id}/segments/{segment_id}' \
- --header 'Authorization: Bearer {api_key}' \
- --header 'Content-Type: application/json'
- ```
- </CodeGroup>
- <CodeGroup title="Response">
- ```json {{ title: 'Response' }}
- {
- "result": "success"
- }
- ```
- </CodeGroup>
- </Col>
- </Row>
- <hr className='ml-0 mr-0' />
- <Heading
- url='/datasets/{dataset_id}/documents/{document_id}/segments/{segment_id}'
- method='POST'
- title='Update a Chunk in a Document '
- name='#update_segment'
- />
- <Row>
- <Col>
- ### POST
- <Properties>
- <Property name='dataset_id' type='string' key='dataset_id'>
- Knowledge ID
- </Property>
- <Property name='document_id' type='string' key='document_id'>
- Document ID
- </Property>
- <Property name='segment_id' type='string' key='segment_id'>
- Document Segment ID
- </Property>
- </Properties>
- ### Request Body
- <Properties>
- <Property name='segment' type='object' key='segment'>
- - <code>content</code> (text) Text content / question content, required
- - <code>answer</code> (text) Answer content, passed if the knowledge is in Q&A mode (optional)
- - <code>keywords</code> (list) Keyword (optional)
- - <code>enabled</code> (bool) False / true (optional)
- </Property>
- </Properties>
- </Col>
- <Col sticky>
- <CodeGroup
- title="Request"
- tag="POST"
- label="/datasets/{dataset_id}/documents/{document_id}/segments/{segment_id}"
- targetCode={`curl --location --request POST '${props.apiBaseUrl}/datasets/{dataset_id}/documents/{document_id}/segments/{segment_id}' \\\n--header 'Authorization: Bearer {api_key}' \\\n--header 'Content-Type: application/json'\\\n--data-raw '{\"segment\": {\"content\": \"1\",\"answer\": \"1\", \"keywords\": [\"a\"], \"enabled\": false}}'`}
- >
- ```bash {{ title: 'cURL' }}
- curl --location --request POST '${props.apiBaseUrl}/datasets/{dataset_id}/documents/{document_id}/segments/{segment_id}' \
- --header 'Content-Type: application/json' \
- --data-raw '{
- "segment": {
- "content": "1",
- "answer": "1",
- "keywords": ["a"],
- "enabled": false
- }
- }'
- ```
- </CodeGroup>
- <CodeGroup title="Response">
- ```json {{ title: 'Response' }}
- {
- "data": [{
- "id": "",
- "position": 1,
- "document_id": "",
- "content": "1",
- "answer": "1",
- "word_count": 25,
- "tokens": 0,
- "keywords": [
- "a"
- ],
- "index_node_id": "",
- "index_node_hash": "",
- "hit_count": 0,
- "enabled": true,
- "disabled_at": null,
- "disabled_by": null,
- "status": "completed",
- "created_by": "",
- "created_at": 1695312007,
- "indexing_at": 1695312007,
- "completed_at": 1695312007,
- "error": null,
- "stopped_at": null
- }],
- "doc_form": "text_model"
- }
- ```
- </CodeGroup>
- </Col>
- </Row>
- <hr className='ml-0 mr-0' />
- <Heading
- url='/datasets/{dataset_id}/retrieve'
- method='POST'
- title='Retrieve Chunks from a Knowledge Base'
- name='#dataset_retrieval'
- />
- <Row>
- <Col>
- ### Path
- <Properties>
- <Property name='dataset_id' type='string' key='dataset_id'>
- Knowledge ID
- </Property>
- </Properties>
- ### Request Body
- <Properties>
- <Property name='query' type='string' key='query'>
- Query keyword
- </Property>
- <Property name='retrieval_model' type='object' key='retrieval_model'>
- Retrieval model (optional, if not filled, it will be recalled according to the default method)
- - <code>search_method</code> (text) Search method: One of the following four keywords is required
- - <code>keyword_search</code> Keyword search
- - <code>semantic_search</code> Semantic search
- - <code>full_text_search</code> Full-text search
- - <code>hybrid_search</code> Hybrid search
- - <code>reranking_enable</code> (bool) Whether to enable reranking, required if the search mode is semantic_search or hybrid_search (optional)
- - <code>reranking_mode</code> (object) Rerank model configuration, required if reranking is enabled
- - <code>reranking_provider_name</code> (string) Rerank model provider
- - <code>reranking_model_name</code> (string) Rerank model name
- - <code>weights</code> (double) Semantic search weight setting in hybrid search mode
- - <code>top_k</code> (integer) Number of results to return (optional)
- - <code>score_threshold_enabled</code> (bool) Whether to enable score threshold
- - <code>score_threshold</code> (double) Score threshold
- </Property>
- <Property name='external_retrieval_model' type='object' key='external_retrieval_model'>
- Unused field
- </Property>
- </Properties>
- </Col>
- <Col sticky>
- <CodeGroup
- title="Request"
- tag="POST"
- label="/datasets/{dataset_id}/retrieve"
- targetCode={`curl --location --request POST '${props.apiBaseUrl}/datasets/{dataset_id}/retrieve' \\\n--header 'Authorization: Bearer {api_key}'\\\n--header 'Content-Type: application/json'\\\n--data-raw '{
- "query": "test",
- "retrieval_model": {
- "search_method": "keyword_search",
- "reranking_enable": false,
- "reranking_mode": null,
- "reranking_model": {
- "reranking_provider_name": "",
- "reranking_model_name": ""
- },
- "weights": null,
- "top_k": 1,
- "score_threshold_enabled": false,
- "score_threshold": null
- }
- }'`}
- >
- ```bash {{ title: 'cURL' }}
- curl --location --request POST '${props.apiBaseUrl}/datasets/{dataset_id}/retrieve' \
- --header 'Authorization: Bearer {api_key}' \
- --header 'Content-Type: application/json' \
- --data-raw '{
- "query": "test",
- "retrieval_model": {
- "search_method": "keyword_search",
- "reranking_enable": false,
- "reranking_mode": null,
- "reranking_model": {
- "reranking_provider_name": "",
- "reranking_model_name": ""
- },
- "weights": null,
- "top_k": 2,
- "score_threshold_enabled": false,
- "score_threshold": null
- }
- }'
- ```
- </CodeGroup>
- <CodeGroup title="Response">
- ```json {{ title: 'Response' }}
- {
- "query": {
- "content": "test"
- },
- "records": [
- {
- "segment": {
- "id": "7fa6f24f-8679-48b3-bc9d-bdf28d73f218",
- "position": 1,
- "document_id": "a8c6c36f-9f5d-4d7a-8472-f5d7b75d71d2",
- "content": "Operation guide",
- "answer": null,
- "word_count": 847,
- "tokens": 280,
- "keywords": [
- "install",
- "java",
- "base",
- "scripts",
- "jdk",
- "manual",
- "internal",
- "opens",
- "add",
- "vmoptions"
- ],
- "index_node_id": "39dd8443-d960-45a8-bb46-7275ad7fbc8e",
- "index_node_hash": "0189157697b3c6a418ccf8264a09699f25858975578f3467c76d6bfc94df1d73",
- "hit_count": 0,
- "enabled": true,
- "disabled_at": null,
- "disabled_by": null,
- "status": "completed",
- "created_by": "dbcb1ab5-90c8-41a7-8b78-73b235eb6f6f",
- "created_at": 1728734540,
- "indexing_at": 1728734552,
- "completed_at": 1728734584,
- "error": null,
- "stopped_at": null,
- "document": {
- "id": "a8c6c36f-9f5d-4d7a-8472-f5d7b75d71d2",
- "data_source_type": "upload_file",
- "name": "readme.txt",
- "doc_type": null
- }
- },
- "score": 3.730463140527718e-05,
- "tsne_position": null
- }
- ]
- }
- ```
- </CodeGroup>
- </Col>
- </Row>
- <hr className='ml-0 mr-0' />
- <Row>
- <Col>
- ### Error message
- <Properties>
- <Property name='code' type='string' key='code'>
- Error code
- </Property>
- </Properties>
- <Properties>
- <Property name='status' type='number' key='status'>
- Error status
- </Property>
- </Properties>
- <Properties>
- <Property name='message' type='string' key='message'>
- Error message
- </Property>
- </Properties>
- </Col>
- <Col>
- <CodeGroup title="Example">
- ```json {{ title: 'Response' }}
- {
- "code": "no_file_uploaded",
- "message": "Please upload your file.",
- "status": 400
- }
- ```
- </CodeGroup>
- </Col>
- </Row>
- <table className="max-w-auto border-collapse border border-slate-400" style={{ maxWidth: 'none', width: 'auto' }}>
- <thead style={{ background: '#f9fafc' }}>
- <tr>
- <th className="p-2 border border-slate-300">code</th>
- <th className="p-2 border border-slate-300">status</th>
- <th className="p-2 border border-slate-300">message</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td className="p-2 border border-slate-300">no_file_uploaded</td>
- <td className="p-2 border border-slate-300">400</td>
- <td className="p-2 border border-slate-300">Please upload your file.</td>
- </tr>
- <tr>
- <td className="p-2 border border-slate-300">too_many_files</td>
- <td className="p-2 border border-slate-300">400</td>
- <td className="p-2 border border-slate-300">Only one file is allowed.</td>
- </tr>
- <tr>
- <td className="p-2 border border-slate-300">file_too_large</td>
- <td className="p-2 border border-slate-300">413</td>
- <td className="p-2 border border-slate-300">File size exceeded.</td>
- </tr>
- <tr>
- <td className="p-2 border border-slate-300">unsupported_file_type</td>
- <td className="p-2 border border-slate-300">415</td>
- <td className="p-2 border border-slate-300">File type not allowed.</td>
- </tr>
- <tr>
- <td className="p-2 border border-slate-300">high_quality_dataset_only</td>
- <td className="p-2 border border-slate-300">400</td>
- <td className="p-2 border border-slate-300">Current operation only supports 'high-quality' datasets.</td>
- </tr>
- <tr>
- <td className="p-2 border border-slate-300">dataset_not_initialized</td>
- <td className="p-2 border border-slate-300">400</td>
- <td className="p-2 border border-slate-300">The dataset is still being initialized or indexing. Please wait a moment.</td>
- </tr>
- <tr>
- <td className="p-2 border border-slate-300">archived_document_immutable</td>
- <td className="p-2 border border-slate-300">403</td>
- <td className="p-2 border border-slate-300">The archived document is not editable.</td>
- </tr>
- <tr>
- <td className="p-2 border border-slate-300">dataset_name_duplicate</td>
- <td className="p-2 border border-slate-300">409</td>
- <td className="p-2 border border-slate-300">The dataset name already exists. Please modify your dataset name.</td>
- </tr>
- <tr>
- <td className="p-2 border border-slate-300">invalid_action</td>
- <td className="p-2 border border-slate-300">400</td>
- <td className="p-2 border border-slate-300">Invalid action.</td>
- </tr>
- <tr>
- <td className="p-2 border border-slate-300">document_already_finished</td>
- <td className="p-2 border border-slate-300">400</td>
- <td className="p-2 border border-slate-300">The document has been processed. Please refresh the page or go to the document details.</td>
- </tr>
- <tr>
- <td className="p-2 border border-slate-300">document_indexing</td>
- <td className="p-2 border border-slate-300">400</td>
- <td className="p-2 border border-slate-300">The document is being processed and cannot be edited.</td>
- </tr>
- <tr>
- <td className="p-2 border border-slate-300">invalid_metadata</td>
- <td className="p-2 border border-slate-300">400</td>
- <td className="p-2 border border-slate-300">The metadata content is incorrect. Please check and verify.</td>
- </tr>
- </tbody>
- </table>
- <div className="pb-4" />
|