Skip to content

Commit d1ba5fa

Browse files
Add enhanced code interpreter with notebook-style interface
Co-authored-by: Gerome-Elassaad <186273274+Gerome-Elassaad@users.noreply.github.com>
1 parent a8e9ece commit d1ba5fa

File tree

3 files changed

+487
-5
lines changed

3 files changed

+487
-5
lines changed

app/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export default function Home() {
4444
const [result, setResult] = useState<ExecutionResult>()
4545
const [messages, setMessages] = useState<Message[]>([])
4646
const [fragment, setFragment] = useState<DeepPartial<FragmentSchema>>()
47-
const [currentTab, setCurrentTab] = useState<'code' | 'fragment' | 'terminal'>('code')
47+
const [currentTab, setCurrentTab] = useState<'code' | 'fragment' | 'terminal' | 'interpreter'>('code')
4848
const [isPreviewLoading, setIsPreviewLoading] = useState(false)
4949
const [isAuthDialogOpen, setAuthDialog] = useState(false)
5050
const [authView, setAuthView] = useState<ViewType>('sign_in')

0 commit comments

Comments
 (0)