Build financial agents with open source models
Superlinked gives your agent one API to read filings, track amendments, compare financial facts and return the source behind every number.
Your financial agent
Compare source versions and answer with cited figures.
Your financial context
The filings and source rules that govern the answer.
from sie_sdk import SIEClientclient = SIEClient( api_key="sk-sie-…", base_url="https://api.superlinked.com",)# Parse a document → clean markdown, tables and layout kept.result = client.extract( "modeldocling", {"document": fileHTMLpathward-filing-packet.htmlbrowse},)print(result["data"]["markdown"])document_bytes=$(base64 < 'pathward-filing-packet.html' | tr -d '\n')
curl https://api.superlinked.com/v1/extract/docling \
-H "Authorization: Bearer sk-sie-…" \
-H "Content-Type: application/json" \
-d "{\"items\":[{\"document\":{\"data\":\"$document_bytes\",\"format\":\"html\"}}]}"Build the "Doc to Markdown" capability into my app using the Superlinked Inference Engine (SIE).
Context
- SIE is an OpenAI-style inference API. Python SDK: `from sie_sdk import SIEClient`; TypeScript: `@superlinked/sie-sdk`.
- Base URL: https://api.superlinked.com (or my regional endpoint). Auth: Bearer key from env `SIE_API_KEY` (never hard-code it).
- Model: docling (SIE primitive: /extract). Keep the model id configurable.
Task
- Input: an uploaded document (PDF / Office / scan).
- Behaviour: return clean markdown for the document, preserving tables and reading order
- Call the selected SIE primitive once per request and map the response into your domain type.
Deliverables
- A typed client wrapper, an application-level function for this task, error handling for timeouts/empty input, and unit tests with a stubbed client.
- Wire it into my existing stack (ask me which framework if unclear) and add a short usage example.import numpy as npfrom sie_sdk import SIEClientclient = SIEClient( api_key="sk-sie-…", base_url="https://api.superlinked.com",)query = "queryWhich passage reports Pathward's restated Q3 FY2023 net income attributable to the parent?"documents = [ "document 1## Item 4.02 Form 8-K Accession 0000907471-25-000071. Filed June 26, 2025. On June 26, 2025, the Audit Committee (the "Audit Committee") of the Board of Directors of Pathward Financial, Inc. ("Pathward Financial" or the "Company"), after discussion with management and the Company's independent registered public accounting firm, Crowe LLP, concluded that the Company's audited consolidated financial statements as of the fiscal years ended September 30, 2024 and 2023, and for each year in the three fiscal year period ended September 30, 2024 contained in its Annual Reports on Form 10-K, and its unaudited consolidated financial statements as of and for the interim periods ended December 31, 2024, 2023, 2022, and 2021, March 31, 2024, 2023, and 2022, and June 30, 2024, 2023, and 2022 contained in its Quarterly Reports on Form 10-Q (collectively, the "Affected Periods") should no longer be relied upon because of errors identified in such financial statements, as described below. Similarly, any financial information in the Company's prior earnings releases, press releases, shareholder communications, investor presentations or other communications that relates to the Affected Periods or the fiscal quarter ended March 31, 2025 should no longer be relied upon. The change from net to gross basis presentation does not impact net income over the life of the portfolio, but changes the timing of when elements of the programs are recognized for accounting purposes.", "document 2# Pathward Financial source excerpts", "document 3## Original Form 10-Q Accession 0000907471-23-000090. Filed August 8, 2023. Three Months Ended June 30, 2023 | (Dollars in thousands, except per share data) | 2023 | 2022 | 2023 | 2022 | |-------------------------------------------------|---------|---------|----------|----------| | Net income attributable to parent | $45,096 | $22,391 | $127,709 | $132,966 | | Diluted | $1.68 | $0.76 | $4.62 | $4.44 |", "document 4## Restated Form 10-K/A Accession 0000907471-25-000083. Filed August 29, 2025. Three Months Ended June 30, 2023 | (Dollars in thousands, except per share data) | As Previously Reported on Form 10-Q | Restatement Adjustment | Restatement Reference | As Restated | As Previously Reported on Form 10-Q | Restatement Adjustment | Restatement Reference | As Restated | |-------------------------------------------------|---------------------------------------|--------------------------|-------------------------|---------------|---------------------------------------|--------------------------|-------------------------|---------------| | Net income attributable to parent | $45,096 | $(9,016) | | $36,080 | $127,709 | $(9,721) | | $117,988 | | Diluted | $1.68 | | | $1.34 | $4.62 | | | $4.27 |",]items = [{"text": query}, *({"text": d} for d in documents)]vecs = client.encode("modelQwen/Qwen3-Embedding-4B", items)mat = np.array([v["dense"] for v in vecs])mat = mat / np.linalg.norm(mat, axis=1, keepdims=True)scores = mat[1:] @ mat[0] # cosine similarity to the queryfor i in np.argsort(scores)[::-1]: print(f"{scores[i]:.3f} {documents[i]}")import { SIEClient } from '@superlinked/sie-sdk';
const client = new SIEClient('https://api.superlinked.com', {
apiKey: 'sk-sie-…',
});
const query = "Which passage reports Pathward's restated Q3 FY2023 net income attributable to the parent?";
const documents = [
"## Item 4.02 Form 8-K Accession 0000907471-25-000071. Filed June 26, 2025. On June 26, 2025, the Audit Committee (the \"Audit Committee\") of the Board of Directors of Pathward Financial, Inc. (\"Pathward Financial\" or the \"Company\"), after discussion with management and the Company's independent registered public accounting firm, Crowe LLP, concluded that the Company's audited consolidated financial statements as of the fiscal years ended September 30, 2024 and 2023, and for each year in the three fiscal year period ended September 30, 2024 contained in its Annual Reports on Form 10-K, and its unaudited consolidated financial statements as of and for the interim periods ended December 31, 2024, 2023, 2022, and 2021, March 31, 2024, 2023, and 2022, and June 30, 2024, 2023, and 2022 contained in its Quarterly Reports on Form 10-Q (collectively, the \"Affected Periods\") should no longer be relied upon because of errors identified in such financial statements, as described below. Similarly, any financial information in the Company's prior earnings releases, press releases, shareholder communications, investor presentations or other communications that relates to the Affected Periods or the fiscal quarter ended March 31, 2025 should no longer be relied upon. The change from net to gross basis presentation does not impact net income over the life of the portfolio, but changes the timing of when elements of the programs are recognized for accounting purposes.",
"# Pathward Financial source excerpts",
"## Original Form 10-Q Accession 0000907471-23-000090. Filed August 8, 2023. Three Months Ended June 30, 2023 | (Dollars in thousands, except per share data) | 2023 | 2022 | 2023 | 2022 | |-------------------------------------------------|---------|---------|----------|----------| | Net income attributable to parent | $45,096 | $22,391 | $127,709 | $132,966 | | Diluted | $1.68 | $0.76 | $4.62 | $4.44 |",
"## Restated Form 10-K/A Accession 0000907471-25-000083. Filed August 29, 2025. Three Months Ended June 30, 2023 | (Dollars in thousands, except per share data) | As Previously Reported on Form 10-Q | Restatement Adjustment | Restatement Reference | As Restated | As Previously Reported on Form 10-Q | Restatement Adjustment | Restatement Reference | As Restated | |-------------------------------------------------|---------------------------------------|--------------------------|-------------------------|---------------|---------------------------------------|--------------------------|-------------------------|---------------| | Net income attributable to parent | $45,096 | $(9,016) | | $36,080 | $127,709 | $(9,721) | | $117,988 | | Diluted | $1.68 | | | $1.34 | $4.62 | | | $4.27 |",
];
const items = [{ text: query }, ...documents.map((text) => ({ text }))];
const vecs = await client.encode('Qwen/Qwen3-Embedding-4B', items);
const [q, ...d] = vecs.map((v) => v.dense);
const cosine = (a: Float32Array, b: Float32Array) => {
const dot = a.reduce((s, x, i) => s + x * b[i], 0);
return dot / (Math.hypot(...a) * Math.hypot(...b));
};
const ranked = documents
.map((doc, i) => ({ doc, score: cosine(q!, d[i]!) }))
.sort((a, b) => b.score - a.score);
console.log(ranked);# Encode the query + candidates in one batch, then rank by cosine.
curl https://api.superlinked.com/v1/encode/Qwen%2FQwen3-Embedding-4B \
-H "Authorization: Bearer sk-sie-…" \
-H "Content-Type: application/json" \
-d "{\"items\":[{\"text\":\"Which passage reports Pathward's restated Q3 FY2023 net income attributable to the parent?\"},{\"text\":\"## Item 4.02 Form 8-K Accession 0000907471-25-000071. Filed June 26, 2025. On June 26, 2025, the Audit Committee (the \\\"Audit Committee\\\") of the Board of Directors of Pathward Financial, Inc. (\\\"Pathward Financial\\\" or the \\\"Company\\\"), after discussion with management and the Company's independent registered public accounting firm, Crowe LLP, concluded that the Company's audited consolidated financial statements as of the fiscal years ended September 30, 2024 and 2023, and for each year in the three fiscal year period ended September 30, 2024 contained in its Annual Reports on Form 10-K, and its unaudited consolidated financial statements as of and for the interim periods ended December 31, 2024, 2023, 2022, and 2021, March 31, 2024, 2023, and 2022, and June 30, 2024, 2023, and 2022 contained in its Quarterly Reports on Form 10-Q (collectively, the \\\"Affected Periods\\\") should no longer be relied upon because of errors identified in such financial statements, as described below. Similarly, any financial information in the Company's prior earnings releases, press releases, shareholder communications, investor presentations or other communications that relates to the Affected Periods or the fiscal quarter ended March 31, 2025 should no longer be relied upon. The change from net to gross basis presentation does not impact net income over the life of the portfolio, but changes the timing of when elements of the programs are recognized for accounting purposes.\"},{\"text\":\"# Pathward Financial source excerpts\"},{\"text\":\"## Original Form 10-Q Accession 0000907471-23-000090. Filed August 8, 2023. Three Months Ended June 30, 2023 | (Dollars in thousands, except per share data) | 2023 | 2022 | 2023 | 2022 | |-------------------------------------------------|---------|---------|----------|----------| | Net income attributable to parent | \$45,096 | \$22,391 | \$127,709 | \$132,966 | | Diluted | \$1.68 | \$0.76 | \$4.62 | \$4.44 |\"},{\"text\":\"## Restated Form 10-K/A Accession 0000907471-25-000083. Filed August 29, 2025. Three Months Ended June 30, 2023 | (Dollars in thousands, except per share data) | As Previously Reported on Form 10-Q | Restatement Adjustment | Restatement Reference | As Restated | As Previously Reported on Form 10-Q | Restatement Adjustment | Restatement Reference | As Restated | |-------------------------------------------------|---------------------------------------|--------------------------|-------------------------|---------------|---------------------------------------|--------------------------|-------------------------|---------------| | Net income attributable to parent | \$45,096 | \$(9,016) | | \$36,080 | \$127,709 | \$(9,721) | | \$117,988 | | Diluted | \$1.68 | | | \$1.34 | \$4.62 | | | \$4.27 |\"}],\"params\":{\"output_types\":[\"dense\"]}}"Build the "Search" capability into my app using the Superlinked Inference Engine (SIE).
Context
- SIE is an OpenAI-style inference API. Python SDK: `from sie_sdk import SIEClient`; TypeScript: `@superlinked/sie-sdk`.
- Base URL: https://api.superlinked.com (or my regional endpoint). Auth: Bearer key from env `SIE_API_KEY` (never hard-code it).
- Model: Qwen/Qwen3-Embedding-4B (SIE primitive: /encode). Keep the model id configurable.
Task
- Input: a query string plus a list of candidate documents.
- Behaviour: return the candidates ranked by semantic similarity to the query, with a score per candidate
- Encode the query and candidates in one batched /encode call, then rank by cosine similarity in the client. Do not call the API per candidate.
Deliverables
- A typed client wrapper, an application-level function for this task, error handling for timeouts/empty input, and unit tests with a stubbed client.
- Wire it into my existing stack (ask me which framework if unclear) and add a short usage example.from sie_sdk import SIEClientclient = SIEClient( api_key="sk-sie-…", base_url="https://api.superlinked.com",)query = "queryWhich passage reports Pathward's restated Q3 FY2023 net income attributable to the parent?"documents = [ "document 1## Item 4.02 Form 8-K Accession 0000907471-25-000071. Filed June 26, 2025. On June 26, 2025, the Audit Committee (the "Audit Committee") of the Board of Directors of Pathward Financial, Inc. ("Pathward Financial" or the "Company"), after discussion with management and the Company's independent registered public accounting firm, Crowe LLP, concluded that the Company's audited consolidated financial statements as of the fiscal years ended September 30, 2024 and 2023, and for each year in the three fiscal year period ended September 30, 2024 contained in its Annual Reports on Form 10-K, and its unaudited consolidated financial statements as of and for the interim periods ended December 31, 2024, 2023, 2022, and 2021, March 31, 2024, 2023, and 2022, and June 30, 2024, 2023, and 2022 contained in its Quarterly Reports on Form 10-Q (collectively, the "Affected Periods") should no longer be relied upon because of errors identified in such financial statements, as described below. Similarly, any financial information in the Company's prior earnings releases, press releases, shareholder communications, investor presentations or other communications that relates to the Affected Periods or the fiscal quarter ended March 31, 2025 should no longer be relied upon. The change from net to gross basis presentation does not impact net income over the life of the portfolio, but changes the timing of when elements of the programs are recognized for accounting purposes.", "document 2# Pathward Financial source excerpts", "document 3## Original Form 10-Q Accession 0000907471-23-000090. Filed August 8, 2023. Three Months Ended June 30, 2023 | (Dollars in thousands, except per share data) | 2023 | 2022 | 2023 | 2022 | |-------------------------------------------------|---------|---------|----------|----------| | Net income attributable to parent | $45,096 | $22,391 | $127,709 | $132,966 | | Diluted | $1.68 | $0.76 | $4.62 | $4.44 |", "document 4## Restated Form 10-K/A Accession 0000907471-25-000083. Filed August 29, 2025. Three Months Ended June 30, 2023 | (Dollars in thousands, except per share data) | As Previously Reported on Form 10-Q | Restatement Adjustment | Restatement Reference | As Restated | As Previously Reported on Form 10-Q | Restatement Adjustment | Restatement Reference | As Restated | |-------------------------------------------------|---------------------------------------|--------------------------|-------------------------|---------------|---------------------------------------|--------------------------|-------------------------|---------------| | Net income attributable to parent | $45,096 | $(9,016) | | $36,080 | $127,709 | $(9,721) | | $117,988 | | Diluted | $1.68 | | | $1.34 | $4.62 | | | $4.27 |",]items = [{"id": str(i), "text": d} for i, d in enumerate(documents)]ranked = client.score("modelQwen/Qwen3-Reranker-4B", {"text": query}, items)for r in ranked["scores"]: print(r["score"], documents[int(r["item_id"])])import { SIEClient } from '@superlinked/sie-sdk';
const client = new SIEClient('https://api.superlinked.com', {
apiKey: 'sk-sie-…',
});
const query = "Which passage reports Pathward's restated Q3 FY2023 net income attributable to the parent?";
const documents = [
"## Item 4.02 Form 8-K Accession 0000907471-25-000071. Filed June 26, 2025. On June 26, 2025, the Audit Committee (the \"Audit Committee\") of the Board of Directors of Pathward Financial, Inc. (\"Pathward Financial\" or the \"Company\"), after discussion with management and the Company's independent registered public accounting firm, Crowe LLP, concluded that the Company's audited consolidated financial statements as of the fiscal years ended September 30, 2024 and 2023, and for each year in the three fiscal year period ended September 30, 2024 contained in its Annual Reports on Form 10-K, and its unaudited consolidated financial statements as of and for the interim periods ended December 31, 2024, 2023, 2022, and 2021, March 31, 2024, 2023, and 2022, and June 30, 2024, 2023, and 2022 contained in its Quarterly Reports on Form 10-Q (collectively, the \"Affected Periods\") should no longer be relied upon because of errors identified in such financial statements, as described below. Similarly, any financial information in the Company's prior earnings releases, press releases, shareholder communications, investor presentations or other communications that relates to the Affected Periods or the fiscal quarter ended March 31, 2025 should no longer be relied upon. The change from net to gross basis presentation does not impact net income over the life of the portfolio, but changes the timing of when elements of the programs are recognized for accounting purposes.",
"# Pathward Financial source excerpts",
"## Original Form 10-Q Accession 0000907471-23-000090. Filed August 8, 2023. Three Months Ended June 30, 2023 | (Dollars in thousands, except per share data) | 2023 | 2022 | 2023 | 2022 | |-------------------------------------------------|---------|---------|----------|----------| | Net income attributable to parent | $45,096 | $22,391 | $127,709 | $132,966 | | Diluted | $1.68 | $0.76 | $4.62 | $4.44 |",
"## Restated Form 10-K/A Accession 0000907471-25-000083. Filed August 29, 2025. Three Months Ended June 30, 2023 | (Dollars in thousands, except per share data) | As Previously Reported on Form 10-Q | Restatement Adjustment | Restatement Reference | As Restated | As Previously Reported on Form 10-Q | Restatement Adjustment | Restatement Reference | As Restated | |-------------------------------------------------|---------------------------------------|--------------------------|-------------------------|---------------|---------------------------------------|--------------------------|-------------------------|---------------| | Net income attributable to parent | $45,096 | $(9,016) | | $36,080 | $127,709 | $(9,721) | | $117,988 | | Diluted | $1.68 | | | $1.34 | $4.62 | | | $4.27 |",
];
const items = documents.map((text, i) => ({ id: String(i), text }));
const ranked = await client.score('Qwen/Qwen3-Reranker-4B', { text: query }, items);
console.log(ranked.scores.map(({ itemId, score }) => ({ document: documents[Number(itemId)], score })));curl https://api.superlinked.com/v1/score/Qwen%2FQwen3-Reranker-4B \
-H "Authorization: Bearer sk-sie-…" \
-H "Content-Type: application/json" \
-d "{\"query\":{\"text\":\"Which passage reports Pathward's restated Q3 FY2023 net income attributable to the parent?\"},\"items\":[{\"id\":\"0\",\"text\":\"## Item 4.02 Form 8-K Accession 0000907471-25-000071. Filed June 26, 2025. On June 26, 2025, the Audit Committee (the \\\"Audit Committee\\\") of the Board of Directors of Pathward Financial, Inc. (\\\"Pathward Financial\\\" or the \\\"Company\\\"), after discussion with management and the Company's independent registered public accounting firm, Crowe LLP, concluded that the Company's audited consolidated financial statements as of the fiscal years ended September 30, 2024 and 2023, and for each year in the three fiscal year period ended September 30, 2024 contained in its Annual Reports on Form 10-K, and its unaudited consolidated financial statements as of and for the interim periods ended December 31, 2024, 2023, 2022, and 2021, March 31, 2024, 2023, and 2022, and June 30, 2024, 2023, and 2022 contained in its Quarterly Reports on Form 10-Q (collectively, the \\\"Affected Periods\\\") should no longer be relied upon because of errors identified in such financial statements, as described below. Similarly, any financial information in the Company's prior earnings releases, press releases, shareholder communications, investor presentations or other communications that relates to the Affected Periods or the fiscal quarter ended March 31, 2025 should no longer be relied upon. The change from net to gross basis presentation does not impact net income over the life of the portfolio, but changes the timing of when elements of the programs are recognized for accounting purposes.\"},{\"id\":\"1\",\"text\":\"# Pathward Financial source excerpts\"},{\"id\":\"2\",\"text\":\"## Original Form 10-Q Accession 0000907471-23-000090. Filed August 8, 2023. Three Months Ended June 30, 2023 | (Dollars in thousands, except per share data) | 2023 | 2022 | 2023 | 2022 | |-------------------------------------------------|---------|---------|----------|----------| | Net income attributable to parent | \$45,096 | \$22,391 | \$127,709 | \$132,966 | | Diluted | \$1.68 | \$0.76 | \$4.62 | \$4.44 |\"},{\"id\":\"3\",\"text\":\"## Restated Form 10-K/A Accession 0000907471-25-000083. Filed August 29, 2025. Three Months Ended June 30, 2023 | (Dollars in thousands, except per share data) | As Previously Reported on Form 10-Q | Restatement Adjustment | Restatement Reference | As Restated | As Previously Reported on Form 10-Q | Restatement Adjustment | Restatement Reference | As Restated | |-------------------------------------------------|---------------------------------------|--------------------------|-------------------------|---------------|---------------------------------------|--------------------------|-------------------------|---------------| | Net income attributable to parent | \$45,096 | \$(9,016) | | \$36,080 | \$127,709 | \$(9,721) | | \$117,988 | | Diluted | \$1.68 | | | \$1.34 | \$4.62 | | | \$4.27 |\"}]}"Build the "Rerank" capability into my app using the Superlinked Inference Engine (SIE).
Context
- SIE is an OpenAI-style inference API. Python SDK: `from sie_sdk import SIEClient`; TypeScript: `@superlinked/sie-sdk`.
- Base URL: https://api.superlinked.com (or my regional endpoint). Auth: Bearer key from env `SIE_API_KEY` (never hard-code it).
- Model: Qwen/Qwen3-Reranker-4B (SIE primitive: /score). Keep the model id configurable.
Task
- Input: a query string plus a list of candidate documents.
- Behaviour: reorder the candidates by true relevance to the query using the cross-encoder
- Call the selected SIE primitive once per request and map the response into your domain type.
Deliverables
- A typed client wrapper, an application-level function for this task, error handling for timeouts/empty input, and unit tests with a stubbed client.
- Wire it into my existing stack (ask me which framework if unclear) and add a short usage example.from sie_sdk import SIEClientclient = SIEClient( api_key="sk-sie-…", base_url="https://api.superlinked.com",)result = client.extract( "modelurchade/gliner_multi-v2.1", {"text": "text## Restated Form 10-K/A Accession 0000907471-25-000083. Filed August 29, 2025. Three Months Ended June 30, 2023 | (Dollars in thousands, except per share data) | As Previously Reported on Form 10-Q | Restatement Adjustment | Restatement Reference | As Restated | As Previously Reported on Form 10-Q | Restatement Adjustment | Restatement Reference | As Restated | |-------------------------------------------------|---------------------------------------|--------------------------|-------------------------|---------------|---------------------------------------|--------------------------|-------------------------|---------------| | Net income attributable to parent | $45,096 | $(9,016) | | $36,080 | $127,709 | $(9,721) | | $117,988 | | Diluted | $1.68 | | | $1.34 | $4.62 | | | $4.27 |"}, labels=[ "entity typereporting period", "entity typemoney amount", ],)for span in result["entities"]: print(span["label"], span["text"])import { SIEClient } from '@superlinked/sie-sdk';
const client = new SIEClient('https://api.superlinked.com', {
apiKey: 'sk-sie-…',
});
const result = await client.extract(
'urchade/gliner_multi-v2.1',
{ text: "## Restated Form 10-K/A Accession 0000907471-25-000083. Filed August 29, 2025. Three Months Ended June 30, 2023 | (Dollars in thousands, except per share data) | As Previously Reported on Form 10-Q | Restatement Adjustment | Restatement Reference | As Restated | As Previously Reported on Form 10-Q | Restatement Adjustment | Restatement Reference | As Restated | |-------------------------------------------------|---------------------------------------|--------------------------|-------------------------|---------------|---------------------------------------|--------------------------|-------------------------|---------------| | Net income attributable to parent | $45,096 | $(9,016) | | $36,080 | $127,709 | $(9,721) | | $117,988 | | Diluted | $1.68 | | | $1.34 | $4.62 | | | $4.27 |" },
{ labels: ["reporting period","money amount"] },
);
console.log(result.entities);curl https://api.superlinked.com/v1/extract/urchade%2Fgliner_multi-v2.1 \
-H "Authorization: Bearer sk-sie-…" \
-H "Content-Type: application/json" \
-d "{\"items\":[{\"text\":\"## Restated Form 10-K/A Accession 0000907471-25-000083. Filed August 29, 2025. Three Months Ended June 30, 2023 | (Dollars in thousands, except per share data) | As Previously Reported on Form 10-Q | Restatement Adjustment | Restatement Reference | As Restated | As Previously Reported on Form 10-Q | Restatement Adjustment | Restatement Reference | As Restated | |-------------------------------------------------|---------------------------------------|--------------------------|-------------------------|---------------|---------------------------------------|--------------------------|-------------------------|---------------| | Net income attributable to parent | \$45,096 | \$(9,016) | | \$36,080 | \$127,709 | \$(9,721) | | \$117,988 | | Diluted | \$1.68 | | | \$1.34 | \$4.62 | | | \$4.27 |\"}],\"params\":{\"labels\":[\"reporting period\",\"money amount\"]}}"Build the "Named entities" capability into my app using the Superlinked Inference Engine (SIE).
Context
- SIE is an OpenAI-style inference API. Python SDK: `from sie_sdk import SIEClient`; TypeScript: `@superlinked/sie-sdk`.
- Base URL: https://api.superlinked.com (or my regional endpoint). Auth: Bearer key from env `SIE_API_KEY` (never hard-code it).
- Model: urchade/gliner_multi-v2.1 (SIE primitive: /extract). Keep the model id configurable.
Task
- Input: a block of text.
- Behaviour: return the named entities found in the text with their types
- Call the selected SIE primitive once per request and map the response into your domain type.
Deliverables
- A typed client wrapper, an application-level function for this task, error handling for timeouts/empty input, and unit tests with a stubbed client.
- Wire it into my existing stack (ask me which framework if unclear) and add a short usage example.Pathward filing packet
Original 10-Q · filed August 8, 2023
| Q3 FY2023 | Reported |
|---|---|
| Net income attributable to parent | $45.096M |
| Diluted earnings per share | $1.68 |
Item 4.02 Form 8-K · filed June 26, 2025
The prior financial statements should no longer be relied upon.
Restated 10-K/A · filed August 29, 2025
| Q3 FY2023 | Previously reported | Adjustment | As restated |
|---|---|---|---|
| Net income attributable to parent | $45.096M | $(9.016M) | $36.080M |
| Diluted earnings per share | $1.68 | $(0.34) | $1.34 |
- Extracts clean, agent-ready markdown
- Keeps tables and layout intact
- Ranks by meaning, not keyword overlap
- Scores every candidate against your query
- Reorders by true relevance
- Scored by meaning, keyword-free
## Restated Form 10-K/A Accession 0000907471-25-000083. Filed August 29, 2025. Three Months Ended June 30, 2023reporting period | (Dollars in thousands, except per share data) | As Previously Reported on Form 10-Q | Restatement Adjustment | Restatement Reference | As Restated | As Previously Reported on Form 10-Q | Restatement Adjustment | Restatement Reference | As Restated | |-------------------------------------------------|---------------------------------------|--------------------------|-------------------------|---------------|---------------------------------------|--------------------------|-------------------------|---------------| | Net income attributable to parent | $45,096money amount | $(9,016)money amount | | $36,080money amount | $127,709 | $(9,721) | | $117,988 | | Diluted | $1.68 | | | $1.34 | $4.62 | | | $4.27 |
- Pulls typed entities straight from raw text
Compare models for this task
Our example filing agent traces a $9.016 million revision
View on GitHubFiling source chain
- 10-Q · August 8, 2023 $45.096M Originally reported
- 8-K · Item 4.02 Do not rely on prior figures Source status changes
- 10-K/A · August 29, 2025 $36.080M Restated Q3 FY2023
Five model stages collect and check the filing evidence
Deploy your way
Managed Cloud
Full compute toolkit for your agents with zero ops.
- No idle GPUs, pay for what you use
- Fits your stack: SDK, API, CLI, MCP
- Zero lock-in, self-host the same stack
- SOC 2 Type 2, US or EU data residency
no credit card required
Self-host with K8s
Easy & scalable deployment in your own cloud.
- Terraform to your cloud in minutes
- Apache-2.0, same engine as Cloud
- Scales to zero, no bill between jobs
- Per-tenant pools, no noisy neighbors
Deploy SIE to our AWS account with the superlinked/sie/aws Terraform module. Docs: superlinked.com/docs/deploymentDeploy SIE to our GCP project with the superlinked/sie/google Terraform module. Docs: superlinked.com/docs/deploymentDeploy SIE to our Azure AKS cluster via helm install. Requirements: superlinked.com/docs/deployment Run locally
Run the same models on your own machine.
- Runs on NVIDIA GPU or Apple Silicon
- One command, no Docker or cluster
- All 100+ Cloud models, fully offline
- Same SDK and IDs, no code changes
pip install "sie-server[local]" && sie-server servepip install "sie-server[local]" && sie-server serve --device cuda