Skip to content

Commit 1e57601

Browse files
committed
sugarfix
1 parent ca87ad5 commit 1e57601

File tree

9 files changed

+20
-15
lines changed

9 files changed

+20
-15
lines changed

scatter/pipeline/outputs/example-hierarchical-polis/hierarchical_result.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163017,7 +163017,7 @@
163017163017
"overview": "この調査では、生成AI技術の利用に伴う著作権侵害や倫理的課題に対する懸念が広く共有されています。特に、AIが無断で著作物を学習し生成物を作成することに対する批判が強く、クリエイターの権利保護と創作文化の維持のための法的枠組みの整備が求められています。また、AI技術の進化が文化や創作活動に与える影響についても議論が必要とされ、倫理的かつ法的に適切な利用方法を模索するための多角的な議論の重要性が強調されています。全体として、AI技術の透明性と責任の所在を明確にし、技術革新を阻害せずに知的財産権を守るための具体的な支援策が求められています。",
163018163018
"config": {
163019163019
"name": "パブコメ",
163020-
"question": "人類が人工知能を開発・展開する上で、最優先すべき課題は何でしょうか?",
163020+
"question": "[テスト]人類が人工知能を開発・展開する上で、最優先すべき課題は何でしょうか?",
163021163021
"input": "aipubcom",
163022163022
"model": "gpt-4o-mini",
163023163023
"extraction": {
@@ -163063,7 +163063,7 @@
163063163063
"output_dir": "aipubcom",
163064163064
"previous": {
163065163065
"name": "パブコメ",
163066-
"question": "人類が人工知能を開発・展開する上で、最優先すべき課題は何でしょうか?",
163066+
"question": "[テスト]人類が人工知能を開発・展開する上で、最優先すべき課題は何でしょうか?",
163067163067
"input": "aipubcom",
163068163068
"model": "gpt-4o-mini",
163069163069
"extraction": {

scatter/pipeline/outputs/example-hierarchical-polis/metadata.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"reporterName": "テストデータ",
3-
"projectMessage": "これは動作確認のためのテストデータです。\nあのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。",
2+
"reporterName": "技術開発チーム",
3+
"projectMessage": "これは動作確認のためのテストデータです。\nあのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。\nまたそのなかでいっしょになったたくさんのひとたち、ファゼーロとロザーロ、羊飼のミーロや、顔の赤いこどもたち、地主のテーモ、山猫博士のボーガント・デストゥパーゴなど、いまこの暗い巨きな石の建物のなかで考えていると、みんなむかし風のなつかしい青い幻燈のように思われます。では、わたくしはいつかの小さなみだしをつけながら、しずかにあの年のイーハトーヴォの五月から十月までを書きつけましょう。",
44
"projectLink": "https://example.com/",
55
"privacyLink": "https://example.com/privacy",
66
"termsLink": "https://example.com/terms"
-301 KB
Loading

scatter/report/app/global.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ footer {
2626
color: #555;
2727
font-size: 0.8rem;
2828
}
29+
.gradientButton {
30+
color: #ffffff;
31+
background: linear-gradient(90deg, rgb(37, 160, 57) 0%, rgb(37, 119, 177) 100%);
32+
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
33+
}
2934
.gradientColor {
3035
color: transparent;
3136
background: linear-gradient(90deg, rgb(37, 160, 57) 0%, rgb(37, 119, 177) 100%);

scatter/report/components/About.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export function About({meta}: AboutProps) {
1919
mx={'auto'}
2020
mb={5}
2121
objectFit={'cover'}
22-
maxW={'200px'}
22+
maxW={'250px'}
2323
alt={meta.reporterName}
2424
/>
2525
<Text mb={5} whiteSpace={'pre-line'}>
@@ -28,7 +28,7 @@ export function About({meta}: AboutProps) {
2828
<VStack>
2929
{meta.projectLink && (
3030
<Link href={meta.projectLink} target={'_blank'} rel={'noopener noreferrer'}>
31-
<Button size={'xl'} w={'300px'}>プロジェクトを開く<ExternalLinkIcon /></Button>
31+
<Button size={'2xl'} w={'300px'} className={'gradientButton'}>ウェブサイトを見る<ExternalLinkIcon /></Button>
3232
</Link>
3333
)}
3434
<HStack gap={4}>

scatter/report/components/Analysis.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export function Analysis({result}: ReportProps) {
3636
const [selectedData, setSelectedData] = useState<{ title: string, body: string}|null>(null)
3737

3838
return (
39-
<Box mx={'auto'} maxW={'750px'} mb={12}>
39+
<Box mx={'auto'} maxW={'750px'} mb={12} cursor={'default'}>
4040
<Separator mt={20} mb={12} />
4141
<Heading textAlign={'center'} fontSize={'xl'} mb={5}>Analysis</Heading>
4242
<HStack mb={5} justify={'center'}>
@@ -48,19 +48,19 @@ export function Analysis({result}: ReportProps) {
4848
</VStack>
4949
</Tooltip>
5050
<ChevronRightIcon />
51-
<Tooltip content={'抽出したコメントをAIで分析し、様々な議論を抽出します。複数の意見が混ざったコメントなども個別に処理しています。'} openDelay={0} closeDelay={0}>
51+
<Tooltip content={'抽出したコメントをAIで分析し、様々な議論を抽出します。複数の意見が混ざったコメントなども適切に分離します。'} openDelay={0} closeDelay={0}>
5252
<VStack gap={0} w={'200px'}>
5353
<Icon mb={2}><MessagesSquareIcon size={'30px'} /></Icon>
5454
<Text className={'headingColor'} fontSize={'3xl'} fontWeight={'bold'} lineHeight={1} mb={1}>{result.arguments.length.toLocaleString()}</Text>
55-
<Text fontSize={'xs'}>AIが抽出した議論数</Text>
55+
<Text fontSize={'xs'}>抽出した議論数</Text>
5656
</VStack>
5757
</Tooltip>
5858
<ChevronRightIcon />
5959
<Tooltip content={'抽出した議論をAIで分析し、近しい議論を一つのクラスターに分類します。クラスターごとの議論を要約し、大量の意見を見える化します。'} openDelay={0} closeDelay={0}>
6060
<VStack gap={0} w={'200px'}>
6161
<Icon mb={2}><ClipboardCheckIcon size={'30px'} /></Icon>
6262
<Text className={'headingColor'} fontSize={'3xl'} fontWeight={'bold'} lineHeight={1} mb={1}>{result.clusters.length.toLocaleString()}</Text>
63-
<Text fontSize={'xs'}>AIが集約したクラスター数</Text>
63+
<Text fontSize={'xs'}>集約したクラスター数</Text>
6464
</VStack>
6565
</Tooltip>
6666
</HStack>

scatter/report/components/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export function Footer({meta}: Props) {
99
return (
1010
<footer>
1111
{meta && (<Text fontWeight={'bold'}>{meta.reporterName}</Text>)}
12-
<Text>デジタル民主主義2030 ブロードリスニング</Text>
12+
<Text>デジタル民主主義2030プロジェクト</Text>
1313
</footer>
1414
)
1515
}

scatter/report/components/Header.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ type Props = {
99

1010
export function Header({meta}: Props) {
1111
return (
12-
<HStack justify="space-between" mb={8}>
12+
<HStack justify="space-between" mb={8} mx={'auto'} maxW={'1200px'}>
1313
<HStack>
1414
{meta && (
1515
<>
1616
<Image
1717
src={'/reporter.png'}
1818
mx={'auto'}
1919
objectFit={'cover'}
20-
maxH={{base: '40px', md: '50px'}}
20+
maxH={{base: '40px', md: '60px'}}
2121
maxW={{base: '120px', md: '200px'}}
2222
alt={meta.reporterName}
2323
/>

scatter/report/components/LoadingBar.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export function LoadingBar({loaded, max, isVisualizing}: Props) {
1616
mx={'auto'}
1717
p={5}
1818
maxW={'800px'}
19-
colorPalette={'teal'}
19+
colorPalette={'cyan'}
2020
>
2121
<HStack gap="5">
2222
<Progress.Track flex="1">
@@ -35,7 +35,7 @@ export function LoadingBar({loaded, max, isVisualizing}: Props) {
3535
mx={'auto'}
3636
p={5}
3737
maxW={'800px'}
38-
colorPalette={'teal'}
38+
colorPalette={'cyan'}
3939
>
4040
<HStack gap="5">
4141
<Progress.Track flex="1">

0 commit comments

Comments
 (0)