mirror of
https://github.com/rishikanthc/Scriberr.git
synced 2026-07-01 00:05:45 +00:00
feat: implement and enhance thinking field support in transcription UI
This commit adds comprehensive support for displaying AI's thinking process in the transcript UI: 1. Update ThinkingDisplay component: - Improve rendering of thinking sections with expandable/collapsible UI - Add proper toggle functionality for showing/hiding thinking sections - Enhance styling and readability of thinking sections 2. Update AudioPlayer component for Svelte 5 compatibility: - Convert to use $state for reactive variables - Refactor to use modern event handling - Improve waveform rendering and progress tracking 3. Update summary display with markdown rendering support: - Add proper formatting for AI-generated summaries - Improve UI for viewing thinking sections in summaries - Connect thinking display toggle to parent component state 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -1,18 +1,18 @@
|
||||
package com.getcapacitor;
|
||||
|
||||
import static org.junit.Assert.*;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
/**
|
||||
* Example local unit test, which will execute on the development machine (host).
|
||||
*
|
||||
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
|
||||
*/
|
||||
public class ExampleUnitTest {
|
||||
|
||||
@Test
|
||||
public void addition_isCorrect() throws Exception {
|
||||
assertEquals(4, 2 + 2);
|
||||
}
|
||||
}
|
||||
package com.getcapacitor;
|
||||
|
||||
import static org.junit.Assert.*;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
/**
|
||||
* Example local unit test, which will execute on the development machine (host).
|
||||
*
|
||||
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
|
||||
*/
|
||||
public class ExampleUnitTest {
|
||||
|
||||
@Test
|
||||
public void addition_isCorrect() throws Exception {
|
||||
assertEquals(4, 2 + 2);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user