ShreyGanatra

Results 2 comments of ShreyGanatra

@AyushAgarwal0109 Added a basic javascript calculator. Please have a look at #476 . Also. do tell me if any changes are needed.

> langchain+gradio chatbot, streaming output > > ``` > streamer = TextIteratorStreamer(tokenizer, timeout=10., skip_prompt=True, skip_special_tokens=True) > pipe = pipeline( > "text-generation", > model=base_model, > tokenizer=tokenizer, > max_length=2048, > temperature=0.6, >...