Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add t3-chat extension #16961

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions extensions/t3-chat/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"root": true,
"extends": ["@raycast"]
}
13 changes: 13 additions & 0 deletions extensions/t3-chat/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules

# Raycast specific files
raycast-env.d.ts
.raycast-swift-build
.swiftpm
compiled_raycast_swift

# misc
.DS_Store
4 changes: 4 additions & 0 deletions extensions/t3-chat/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"printWidth": 120,
"singleQuote": false
}
3 changes: 3 additions & 0 deletions extensions/t3-chat/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# T3 Chat Changelog

## [Initial Version] - {PR_MERGE_DATE}
15 changes: 15 additions & 0 deletions extensions/t3-chat/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# T3 Chat Raycast Extension

Create T3 chats directly from Raycast!

> ℹ️ Now in review for the store! [Follow the status here](https://github.com/raycast/extensions/pull/16961).

## Included Commands

- `Ask T3 Chat`: Create a new chat on T3 Chat with the given query

## Setup

Which model you would like to use can be configured in the model settings. Note that non `gpt-4o-mini` and `Gemini 2.0 Flash` models will require a pro subscription.

Optional: you can set the extension as a [fallback command](https://manual.raycast.com/fallback-commands) for even easier use!
Binary file added extensions/t3-chat/assets/raycast-t3-chat.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions extensions/t3-chat/lib/prefs.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { getPreferenceValues } from "@raycast/api";

interface Preferences {
model: string;
}

export function getPrefs(): Preferences {
return getPreferenceValues();
}
Loading
Loading