-
Notifications
You must be signed in to change notification settings - Fork 0
/
catalog-info.yaml
60 lines (57 loc) · 1.27 KB
/
catalog-info.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
apiVersion: backstage.io/v1alpha1
kind: Component
metadata:
name: transcribe-me
title: Transcribe Me
description: |
Transcribe Me is a CLI-driven Python application that transcribes audio files using the OpenAI Whisper API and generates summaries of the transcriptions using both OpenAI's GPT-4 and Anthropic's Claude models.
tags:
- python
- docker
- ai
spec:
type: service
lifecycle: production
owner: johnnyhuy
dependsOn:
- resource:openai-api
- resource:openai-whisper-api
- resource:claude-api
---
apiVersion: backstage.io/v1alpha1
kind: Resource
metadata:
name: openai-api
title: OpenAI API
description: |
The OpenAI API is a paid API that transcribes audio files to text.
tags:
- ai
spec:
type: service
lifecycle: production
---
apiVersion: backstage.io/v1alpha1
kind: Resource
metadata:
name: openai-whisper-api
description: |
The OpenAI Whisper API is a paid API that transcribes audio files to text.
tags:
- ai
spec:
type: service
lifecycle: production
---
apiVersion: backstage.io/v1alpha1
kind: Resource
metadata:
name: claude-api
title: Claude API
description: |
The Claude API is a paid API that generates summaries of text.
tags:
- ai
spec:
type: service
lifecycle: production