Init README.md
Browse files
README.md
CHANGED
|
@@ -2,4 +2,167 @@
|
|
| 2 |
license: other
|
| 3 |
license_name: proprietary
|
| 4 |
license_link: LICENSE
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
license: other
|
| 3 |
license_name: proprietary
|
| 4 |
license_link: LICENSE
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
- fr
|
| 8 |
+
tags:
|
| 9 |
+
- agi
|
| 10 |
+
- lucidquery
|
| 11 |
+
- multimodal
|
| 12 |
+
- geolocation
|
| 13 |
+
- osint
|
| 14 |
+
- code
|
| 15 |
+
- coding
|
| 16 |
+
- long-context
|
| 17 |
+
- reasoning
|
| 18 |
+
- api
|
| 19 |
---
|
| 20 |
+
|
| 21 |
+
|
| 22 |
+

|
| 23 |
+
|
| 24 |
+
# AGI-01 Swift
|
| 25 |
+
|
| 26 |
+
AGI-01 Swift is LucidQuery's fast multimodal model endpoint, built for high-volume reasoning, coding, image understanding, image geolocation, web-grounded answers, and design-oriented tasks.
|
| 27 |
+
|
| 28 |
+
This is an access-only model card. Model weights are not publicly released on Hugging Face.
|
| 29 |
+
|
| 30 |
+
## Access
|
| 31 |
+
|
| 32 |
+
AGI-01 Swift is available through the LucidQuery website and the LucidQuery API.
|
| 33 |
+
|
| 34 |
+
Website access:
|
| 35 |
+
|
| 36 |
+
https://lucidquery.com/chat
|
| 37 |
+
|
| 38 |
+
API access:
|
| 39 |
+
|
| 40 |
+
```text
|
| 41 |
+
API model id: lucidquery-agi-01-swift
|
| 42 |
+
Base URL: https://api.lucidquery.com/v1
|
| 43 |
+
```
|
| 44 |
+
|
| 45 |
+
The API is OpenAI-compatible, so existing OpenAI SDK clients can be used by changing the base URL and model id.
|
| 46 |
+
|
| 47 |
+
## Quickstart
|
| 48 |
+
|
| 49 |
+
```python
|
| 50 |
+
from openai import OpenAI
|
| 51 |
+
|
| 52 |
+
client = OpenAI(
|
| 53 |
+
api_key="lq_live_...",
|
| 54 |
+
base_url="https://api.lucidquery.com/v1",
|
| 55 |
+
)
|
| 56 |
+
|
| 57 |
+
response = client.chat.completions.create(
|
| 58 |
+
model="lucidquery-agi-01-swift",
|
| 59 |
+
messages=[
|
| 60 |
+
{"role": "user", "content": "Explain quantum error correction simply."}
|
| 61 |
+
],
|
| 62 |
+
)
|
| 63 |
+
|
| 64 |
+
print(response.choices[0].message.content)
|
| 65 |
+
```
|
| 66 |
+
|
| 67 |
+
Streaming is also supported:
|
| 68 |
+
|
| 69 |
+
```python
|
| 70 |
+
stream = client.chat.completions.create(
|
| 71 |
+
model="lucidquery-agi-01-swift",
|
| 72 |
+
messages=[
|
| 73 |
+
{"role": "user", "content": "Write a FastAPI authentication route."}
|
| 74 |
+
],
|
| 75 |
+
stream=True,
|
| 76 |
+
)
|
| 77 |
+
|
| 78 |
+
for chunk in stream:
|
| 79 |
+
print(chunk.choices[0].delta.content or "", end="")
|
| 80 |
+
```
|
| 81 |
+
|
| 82 |
+
## Capabilities
|
| 83 |
+
|
| 84 |
+
- General reasoning
|
| 85 |
+
- Coding and debugging
|
| 86 |
+
- Image understanding
|
| 87 |
+
- Image geolocation from a single image
|
| 88 |
+
- Web-grounded answers
|
| 89 |
+
- Design-oriented generation
|
| 90 |
+
- JSON mode and structured output
|
| 91 |
+
- Tool/function calling
|
| 92 |
+
- Long-context workflows
|
| 93 |
+
- Fast streaming responses
|
| 94 |
+
|
| 95 |
+
## Benchmarks
|
| 96 |
+
|
| 97 |
+
Reported zero-shot pass@1 results:
|
| 98 |
+
|
| 99 |
+
| Benchmark | Score |
|
| 100 |
+
| --- | ---: |
|
| 101 |
+
| HumanEval | 94.7% |
|
| 102 |
+
| GPQA Diamond | 84.3% |
|
| 103 |
+
| MATH-500 | 98.2% |
|
| 104 |
+
| LucidQuotient | 950+ LQ |
|
| 105 |
+
|
| 106 |
+
|
| 107 |
+

|
| 108 |
+
|
| 109 |
+
|
| 110 |
+

|
| 111 |
+
|
| 112 |
+
## Recommended Use
|
| 113 |
+
|
| 114 |
+
AGI-01 Swift is designed for applications that need strong output quality with fast inference and practical multimodal support.
|
| 115 |
+
|
| 116 |
+
Good fits include:
|
| 117 |
+
|
| 118 |
+
- Developer tools
|
| 119 |
+
- AI coding assistants
|
| 120 |
+
- Search and answer engines
|
| 121 |
+
- Internal automation
|
| 122 |
+
- Design generation workflows
|
| 123 |
+
- High-volume chat applications
|
| 124 |
+
- Multimodal reasoning systems
|
| 125 |
+
|
| 126 |
+
For deeper reasoning and long multi-step tasks, use `lucidquery-agi-01-frontier`.
|
| 127 |
+
|
| 128 |
+
## Website and API
|
| 129 |
+
|
| 130 |
+
Use AGI-01 Swift on the web:
|
| 131 |
+
|
| 132 |
+
https://lucidquery.com/chat
|
| 133 |
+
|
| 134 |
+
API documentation:
|
| 135 |
+
|
| 136 |
+
https://lucidquery.com/docs
|
| 137 |
+
|
| 138 |
+
API platform:
|
| 139 |
+
|
| 140 |
+
https://lucidquery.com/api
|
| 141 |
+
|
| 142 |
+
Blog note:
|
| 143 |
+
|
| 144 |
+
https://lucidquery.com/blog/introducing-agi-01-swift-world-engine
|
| 145 |
+
|
| 146 |
+
## License
|
| 147 |
+
|
| 148 |
+
AGI-01 Swift is a proprietary LucidQuery model. Model weights, training data, and internal architecture details are not publicly released.
|
| 149 |
+
|
| 150 |
+
Access is provided through LucidQuery and governed by the LucidQuery Terms of Service.
|
| 151 |
+
|
| 152 |
+
## Data Policy
|
| 153 |
+
|
| 154 |
+
LucidQuery does not use customer prompts or completions to train models by default.
|
| 155 |
+
|
| 156 |
+
Prompts, completions, and request metadata may be logged for debugging, reliability, abuse prevention, analytics, and service improvement. Where possible, logs are anonymized or stripped of direct identifiers before internal analysis.
|
| 157 |
+
|
| 158 |
+
For enterprise and platform partners, custom retention, deletion, no-training, and limited-logging terms may be supported.
|
| 159 |
+
|
| 160 |
+
## Contact
|
| 161 |
+
|
| 162 |
+
Website:
|
| 163 |
+
|
| 164 |
+
https://lucidquery.com
|
| 165 |
+
|
| 166 |
+
Contact:
|
| 167 |
+
|
| 168 |
+
https://lucidquery.com/contact
|