@toothfairyai/tfcode 1.0.31 → 1.0.33

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/bin/tfcode CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toothfairyai/tfcode",
3
- "version": "1.0.31",
3
+ "version": "1.0.33",
4
4
  "bin": {
5
5
  "tfcode": "./bin/tfcode.js"
6
6
  },
@@ -9,18 +9,7 @@
9
9
  },
10
10
  "license": "MIT",
11
11
  "optionalDependencies": {
12
- "@toothfairyai/tfcode-linux-arm64": "1.0.31",
13
- "@toothfairyai/tfcode-windows-x64": "1.0.31",
14
- "@toothfairyai/tfcode-linux-x64-baseline-musl": "1.0.31",
15
- "@toothfairyai/tfcode-darwin-x64-baseline": "1.0.31",
16
- "@toothfairyai/tfcode-linux-x64-musl": "1.0.31",
17
- "@toothfairyai/tfcode-windows-x64-baseline": "1.0.31",
18
- "@toothfairyai/tfcode-linux-arm64-musl": "1.0.31",
19
- "@toothfairyai/tfcode-windows-arm64": "1.0.31",
20
- "@toothfairyai/tfcode-linux-x64": "1.0.31",
21
- "@toothfairyai/tfcode-darwin-x64": "1.0.31",
22
- "@toothfairyai/tfcode-linux-x64-baseline": "1.0.31",
23
- "@toothfairyai/tfcode-darwin-arm64": "1.0.31"
12
+ "@toothfairyai/tfcode-darwin-arm64": "1.0.33"
24
13
  },
25
14
  "engines": {
26
15
  "node": ">=18"
@@ -105,6 +105,7 @@ class TFConfig(BaseModel):
105
105
  base_url=urls["base_url"],
106
106
  ai_url=urls["ai_url"],
107
107
  ai_stream_url=urls["ai_stream_url"],
108
+ user_agent="tfcode",
108
109
  )
109
110
  return self._client
110
111