@gsa-tts/graymatter-ui 0.4.15 → 0.4.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gsa-tts/graymatter-ui",
3
- "version": "0.4.15",
3
+ "version": "0.4.16",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -712,7 +712,6 @@
712
712
  display: flex;
713
713
  width: var(--ai-size-40);
714
714
  height: var(--ai-size-40);
715
- padding: var(--ai-size-8);
716
715
  justify-content: center;
717
716
  align-items: center;
718
717
  flex-shrink: 0;
@@ -26,12 +26,6 @@ curl -X 'GET' \
26
26
  {
27
27
  "object": "list",
28
28
  "data": [
29
- {
30
- "id": "claude_3_5_sonnet",
31
- "created": 1718841600,
32
- "object": "model",
33
- "owned_by": "Anthropic"
34
- },
35
29
  {
36
30
  "id": "llama3211b",
37
31
  "created": 1727222400,
@@ -55,7 +49,7 @@ To reach chat completions the documented endpoint is `<base url>/api/v1/chat/com
55
49
 
56
50
  **Request Body**
57
51
 
58
- * **model**: The model ID (e.g: gemini-2.0-flash, claude_3_haiku)
52
+ * **model**: The model ID (e.g: gemini-2.0-flash)
59
53
  * **messages**: An array of of message items consisting of User message, Image Content, Document Content, Assistant Message
60
54
  * **max_tokens**: Maximum response length (optional)
61
55
  * **temperature**: Response creativity (0.0-2.0, optional)
@@ -63,7 +57,6 @@ To reach chat completions the documented endpoint is `<base url>/api/v1/chat/com
63
57
  | **Models** | **Range** | **Default value** |
64
58
  | :------- | :------: | -------: |
65
59
  | Google models | 0.0 - 2.0 | 1.0 |
66
- | Anthropic models | 0.0 - 1.0 | 0.5 |
67
60
  | Meta models | 0.0 - 1.0 | 0.5 |
68
61
 
69
62
  * **top_p**: An alternative to sampling with temperature, called nucleus sampling (optional)
@@ -18,13 +18,6 @@ USAi API is organized around [REST](http://en.wikipedia.org/wiki/Representationa
18
18
  - [Gemini 2.5 Flash](https://ai.google.dev/gemini-api/docs/models#gemini-2.5-flash)
19
19
  - [Gemini 2.5 Pro](https://ai.google.dev/gemini-api/docs/models#gemini-2.5-pro)
20
20
 
21
- **Anthropic models**
22
- - [Claude Haiku 3.5](https://docs.claude.com/en/docs/overview)
23
- - [Claude Sonnet 3.7](https://docs.claude.com/en/docs/overview)
24
- - [Claude Sonnet 4](https://docs.claude.com/en/docs/overview)
25
- - [Claude Sonnet 4.5](https://docs.claude.com/en/docs/overview)
26
- - [Claude Opus 4](https://docs.claude.com/en/docs/overview)
27
- - [Claude Opus 4.5](https://docs.claude.com/en/docs/overview)
28
21
 
29
22
  **Meta models**
30
23
  - [Llama 3.2 11B](https://www.llama.com/docs/model-cards-and-prompt-formats/llama3_2/)
@@ -40,7 +33,7 @@ Each model we draw on has unique capabilities. Models may also respond different
40
33
 
41
34
  #### Content types
42
35
 
43
- The models USAi API draws on support multiple types of inputs; text, image, and file content types. However, each model has different input capabilities: for example, Claude Sonnet supports Optical Character Recognition (OCR) and recognizes image-only PDFs, while Claude Haiku and Llama currently do not. For additional detail about how we handle these content types, reference [OpenAI’s API documentation](https://platform.openai.com/docs/api-reference/chat/create).
36
+ The models USAi API draws on support multiple types of inputs; text, image, and file content types. For additional detail about how we handle these content types, reference [OpenAI’s API documentation](https://platform.openai.com/docs/api-reference/chat/create).
44
37
 
45
38
  ### Authentication
46
39