summarize-meeting 0.1.0 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE.txt +8 -0
- data/README.md +96 -0
- data/bin/summarize-meeting +0 -1
- metadata +13 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 70d706fa7630923e2599b27fc3916a16523785a915a659a3b81d9ff47853b6b2
|
4
|
+
data.tar.gz: 98bc7a33992281e1476702fb927f3f41f2b81a5f8b8ebd1c264d37ac236af87e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 31e4d53b5969ba8cc4341045f05888b68d6812ff4480d8b2d4f850533bd76f30665a4a92c29872c2731a040e0d1d0b25aa9554fe9f72046cde0d22b5a7fbb902
|
7
|
+
data.tar.gz: 75035c790d2448947a98a51b2fb19f23c6e2d394095a9090bc5242009443db0b7ffd4ac23327d5fc9b24999a16fe6ad2367007be5096693106a8cf04701e41b7
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,8 @@
|
|
1
|
+
Copyright 2023 XBE LLC
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
4
|
+
|
5
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
6
|
+
|
7
|
+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
8
|
+
|
data/README.md
ADDED
@@ -0,0 +1,96 @@
|
|
1
|
+
## Summarize Meeting
|
2
|
+
|
3
|
+
Automatically generate a meeting summary from a meeting transcript using OpenAI's ChapGPT API.
|
4
|
+
|
5
|
+
## Usage
|
6
|
+
|
7
|
+
Install the gem.
|
8
|
+
|
9
|
+
`gem install summarize-meeting`
|
10
|
+
|
11
|
+
### Commands
|
12
|
+
|
13
|
+
Input a meeting transcript and output a summary.
|
14
|
+
|
15
|
+
#### Usage
|
16
|
+
|
17
|
+
`summarize-meeting transcript.txt`
|
18
|
+
|
19
|
+
#### Options
|
20
|
+
|
21
|
+
`-o, --output-file FILE` - Path to the output file. By default, it will be the `${input-file}-summary.txt`
|
22
|
+
`-k, --openai-key KEY` - The OpenAI API Key. Can also be set via `ENV["OPENAI_KEY"]`.
|
23
|
+
`-g, --openai-org ORG` - The OpenAI org id. It can also be set via `ENV["OPENAI_ORG"]` .
|
24
|
+
|
25
|
+
## Example
|
26
|
+
|
27
|
+
This is an example summary from a 3,700 word transcript from a 30 minute meeting.
|
28
|
+
|
29
|
+
> Summary of the Meeting:
|
30
|
+
>
|
31
|
+
> The meeting started with discussions focusing on individual progress reports, where Sean shared updates on profit-related work, consolidating estimates, and improving Hey Kayla by creating a new JSON structure for Chat GPT messages API. Colenso reported finding a bug in the JavaScript Google Maps API and not making progress on push notifications. Meanwhile, Pankaj worked on bulk assign form handling, retaining time zone, and Benjamin faced some issues regarding database connection but eventually resolved the casting and integration issues.
|
32
|
+
>
|
33
|
+
> In the open discussion session, the team discussed the confusion over parameters and importing across different branches. Benjamin shared about an open discussion necessary for a feature related to job production plans at ACME. Shirish discussed fixing the cycle time summary query, which used to take up to 6-7 seconds and now takes less than 1 second. Anish added a business unit filter feature to the time card and will work on page titles.
|
34
|
+
>
|
35
|
+
> The meeting concluded with Sean hoping to have success with profit stuff before Monday's call.
|
36
|
+
>
|
37
|
+
> Attendees:
|
38
|
+
>
|
39
|
+
> - Sean
|
40
|
+
> - Colenso
|
41
|
+
> - Pankaj
|
42
|
+
> - Benjamin
|
43
|
+
> - Shirish
|
44
|
+
> - Anish
|
45
|
+
>
|
46
|
+
> Action Items:
|
47
|
+
>
|
48
|
+
> - Sean to continue working on profit-related things before the next call.
|
49
|
+
> - Colenso to continue working on resolving the bug in the Google Maps API and push notifications.
|
50
|
+
> - Pankaj to continue working on bulk assign form handling and to keep the time zone option.
|
51
|
+
> - Benjamin to finalize the release notes for the open discussion at and to continue working on resolving the database connection issues.
|
52
|
+
> - Shirish to further improve the query for cycle time summary and reduce the processing time.
|
53
|
+
> - Anish to improve page titles and add filters for the time card.
|
54
|
+
>
|
55
|
+
> Detailed notes:
|
56
|
+
>
|
57
|
+
> Sean:
|
58
|
+
>
|
59
|
+
> - Reported progress on Prophet-related things
|
60
|
+
> - Worked on consolidating all effective estimates
|
61
|
+
> - Worked on improving Hey Kayla by creating a new JSON structure for Chat GPT messages API
|
62
|
+
>
|
63
|
+
> Colenso:
|
64
|
+
>
|
65
|
+
> - Found a bug in the JavaScript Google Maps API
|
66
|
+
> - Has not made progress on push notifications yet
|
67
|
+
>
|
68
|
+
> Pankaj:
|
69
|
+
>
|
70
|
+
> - Worked on bulk assign form handling
|
71
|
+
> - Allowed the option to retain the time zone
|
72
|
+
>
|
73
|
+
> Benjamin:
|
74
|
+
>
|
75
|
+
> - Faced difficulty regarding database connection issues in Heroku
|
76
|
+
> - Resolved casting issues by switching to a different cash store
|
77
|
+
> - Listed an interesting issue regarding split loads with more than one material transaction during the same trip
|
78
|
+
> - Mentioned an integration issue with ACME
|
79
|
+
> - Shared that there is an open discussion at ACME and he needs assistance with the release notes for a feature related to job production plans
|
80
|
+
>
|
81
|
+
> Open Discussion:
|
82
|
+
>
|
83
|
+
> - The team discussed the confusion over parameters and importing across different branches.
|
84
|
+
>
|
85
|
+
> Shirish:
|
86
|
+
>
|
87
|
+
> - Discussed fixing the cycle time summary query, which used to take up to 6-7 seconds and now takes less than 1 second
|
88
|
+
>
|
89
|
+
> Anish:
|
90
|
+
>
|
91
|
+
> - Added a business unit filter feature to the time card
|
92
|
+
> - Will work on improving page titles
|
93
|
+
|
94
|
+
## Credits
|
95
|
+
|
96
|
+
This gem was created by XBE.
|
data/bin/summarize-meeting
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: summarize-meeting
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sean Devine
|
@@ -25,7 +25,7 @@ dependencies:
|
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
|
-
name:
|
28
|
+
name: ruby-openai
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - ">="
|
@@ -39,7 +39,7 @@ dependencies:
|
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
|
-
name:
|
42
|
+
name: mustache
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - ">="
|
@@ -53,13 +53,13 @@ dependencies:
|
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
|
-
name:
|
56
|
+
name: rspec
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
59
|
- - ">="
|
60
60
|
- !ruby/object:Gem::Version
|
61
61
|
version: '0'
|
62
|
-
type: :
|
62
|
+
type: :development
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
@@ -67,7 +67,7 @@ dependencies:
|
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
|
-
name: rspec
|
70
|
+
name: guard-rspec
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
73
|
- - ">="
|
@@ -81,7 +81,7 @@ dependencies:
|
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '0'
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
|
-
name:
|
84
|
+
name: vcr
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
86
86
|
requirements:
|
87
87
|
- - ">="
|
@@ -95,7 +95,7 @@ dependencies:
|
|
95
95
|
- !ruby/object:Gem::Version
|
96
96
|
version: '0'
|
97
97
|
- !ruby/object:Gem::Dependency
|
98
|
-
name:
|
98
|
+
name: webmock
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
100
100
|
requirements:
|
101
101
|
- - ">="
|
@@ -109,7 +109,7 @@ dependencies:
|
|
109
109
|
- !ruby/object:Gem::Version
|
110
110
|
version: '0'
|
111
111
|
- !ruby/object:Gem::Dependency
|
112
|
-
name:
|
112
|
+
name: dotenv
|
113
113
|
requirement: !ruby/object:Gem::Requirement
|
114
114
|
requirements:
|
115
115
|
- - ">="
|
@@ -130,11 +130,14 @@ executables:
|
|
130
130
|
extensions: []
|
131
131
|
extra_rdoc_files: []
|
132
132
|
files:
|
133
|
+
- LICENSE.txt
|
134
|
+
- README.md
|
133
135
|
- bin/summarize-meeting
|
134
136
|
- lib/ai.rb
|
135
137
|
- lib/meeting.rb
|
136
138
|
homepage:
|
137
|
-
licenses:
|
139
|
+
licenses:
|
140
|
+
- MIT
|
138
141
|
metadata: {}
|
139
142
|
post_install_message:
|
140
143
|
rdoc_options: []
|