8
8
9
9
from functools import lru_cache
10
10
11
- import marvin
12
- import praw
13
- from marvin .utilities .logging import get_logger
11
+ import marvin # type: ignore
12
+ import praw # type: ignore
13
+ from marvin .utilities .logging import get_logger # type: ignore
14
14
from pydantic_settings import BaseSettings , SettingsConfigDict
15
15
16
16
from raggy .documents import Document , document_to_excerpts
17
17
from raggy .vectorstores .tpuf import TurboPuffer , query_namespace
18
18
19
- logger = get_logger ("reddit_thread_example" )
19
+ logger = get_logger ("reddit_thread_example" ) # type: ignore
20
20
21
21
22
22
class Settings (BaseSettings ):
@@ -26,45 +26,47 @@ class Settings(BaseSettings):
26
26
settings = Settings ()
27
27
28
28
29
- def create_reddit_client () -> praw .Reddit :
30
- return praw .Reddit (
29
+ def create_reddit_client () -> praw .Reddit : # type: ignore
30
+ return praw .Reddit ( # type: ignore
31
31
client_id = getattr (settings , "reddit_client_id" ),
32
32
client_secret = getattr (settings , "reddit_client_secret" ),
33
33
user_agent = "testscript by /u/_n80n8" ,
34
34
)
35
35
36
36
37
37
@lru_cache
38
- def read_thread (submission_id : str ):
39
- logger .info (f"Reading thread { submission_id } " )
40
- submission = create_reddit_client ().submission (submission_id )
38
+ def read_thread (submission_id : str ) -> str :
39
+ logger .info (f"Reading thread { submission_id } " ) # type: ignore
40
+ submission : praw .models .Submission = create_reddit_client ().submission ( # type: ignore
41
+ submission_id
42
+ )
41
43
42
44
text_buffer = ""
43
- text_buffer += f"Title: { submission .title } \n "
44
- text_buffer += f"Selftext: { submission .selftext } \n "
45
+ text_buffer += f"Title: { submission .title } \n " # type: ignore
46
+ text_buffer += f"Selftext: { submission .selftext } \n " # type: ignore
45
47
46
- submission .comments .replace_more (limit = None ) # Retrieve all comments
47
- for comment in submission .comments .list ():
48
+ submission .comments .replace_more (limit = None ) # type: ignore
49
+ for comment in submission .comments .list (): # type: ignore
48
50
text_buffer += "\n ---\n "
49
- text_buffer += f"Comment Text: { comment .body } \n "
51
+ text_buffer += f"Comment Text: { comment .body } \n " # type: ignore
50
52
51
53
return text_buffer
52
54
53
55
54
- @marvin .fn
56
+ @marvin .fn # type: ignore
55
57
def summarize_results (relevant_excerpts : str ) -> str : # type: ignore[empty-body]
56
58
"""give a summary of the relevant excerpts"""
57
59
58
60
59
61
async def main (thread_id : str ):
60
- logger .info ("Starting Reddit thread example" )
62
+ logger .info ("Starting Reddit thread example" ) # type: ignore
61
63
thread_text = read_thread (thread_id )
62
64
chunked_documents = await document_to_excerpts (Document (text = thread_text ))
63
65
64
66
with TurboPuffer (namespace = "reddit_thread" ) as tpuf :
65
67
tpuf .upsert (chunked_documents )
66
68
67
- logger .info ("Thread saved!" )
69
+ logger .info ("Thread saved!" ) # type: ignore
68
70
69
71
query = "how do people feel about the return of the water taxis?"
70
72
results = query_namespace (query , namespace = "reddit_thread" )
0 commit comments